Having some trouble with Fortran

  • Fortran
  • Thread starter Bashkir
  • Start date
  • Tags
    Fortran
In summary, Fortran is a programming language that may be difficult for some individuals to learn and use. It is primarily used for scientific and engineering applications, and is known for its efficiency and speed in handling complex mathematical computations. Some common challenges with Fortran include its strict syntax and lack of modern features, making it less popular compared to newer programming languages. However, for those who are familiar with it, Fortran remains a valuable tool for certain specialized tasks.
  • #1
Bashkir
31
1
I am sitting down and working my way through a Fortran 90/95 book for a research project I will be involved in at my university in a few weeks. However, I can't even seem to get the most basic program to work even when copying the template directly from the book. It always says invalid character at (1). For instance, my Hello World program was formatted as such:

PROGRAM Hello_world
WRITE(*,*) "Hello, World!"
END program Hello_world

Then, I saved it as hello.f90.

When I go to try to compile it, it keeps giving me an an invalid program statement at (1) and several other invalid character at (1) errors.

I am using the Terminal on Linux and VIM if that matters.
 
Technology news on Phys.org
  • #2
For some reason it makes me think about UTF-8 with BOM. But I can be completely off.
 
  • #4
You should be able to use "underscore" in Fortran 90 or 95 variable names etc - but there are some not-quite-standards-compliant compilers around (and some not-even-close-to-being-standards-compliant ones!)

Another possibility is the difference between free-format and fixed-format source code. If you and the compiler disagree about which format you are using, nothing will work and the error messages you get might look weird..

The two formats might be distinguished by different filename extensions like .f90 and .F90, or by using a compiler option on the command line. Check your compiler documentation. (If you are learning Fortran from scratch, use free format!)

As for standards, there's an old programming joke: scientific programmers are happy to write in any language, provided it's called FORTRAN. (And conversely, commercial programmers don't care what their programming language is called, so long as the syntax is identical to COBOL.)
 
  • #5
Is there a copy of the reference manual on the web for the manufacturer's version of FORTRAN that you are using? I'm not asking for a generic FORTRAN book, but the manual for the exact version that you are using. With that it should be possible to track down exactly what the problem is and what is needed to fix this.
 
  • #6
I tried saving the file as .F90 now, and it still gives me the same errors.

I will check the web for the reference manual.

@Jedi -- I copied that program directly and it is still giving me same error.

@Borek -- This is my first programming language, and I honestly have no idea what you just said haha.

Thank you everyone for the help.

Also, I am compiling with gfortran.
 
  • #7
I copied your program directly and it compiled and ran just fine. Tell us exactly what commands you are using to compile and run the program, and what operating system you are using.
 
  • #8
Well, I am running linux on one of my school's computers.

I open vim and type the program directly as it is show above. I then save it to my desktop as hello.f90

Then, in the terminal, I type compile it:

gfortran hello.f90

and also, at the advice of someone else, tried

gfortran -o hello hello.f90

but both of them gave me the same error.
 
  • #9
  • #10
please post the output of the following command:
Code:
gfortran --version
 
  • #11
Bashkir said:
Well, I am running linux on one of my school's computers.

I open vim and type the program directly as it is show above. I then save it to my desktop as hello.f90
Then, in the terminal, I type compile it:
gfortran hello.f90
and also, at the advice of someone else, tried
gfortran -o hello hello.f90
but both of them gave me the same error.

That all looks OK. But you said...
Bashkir said:
This is my first programming language
... so your best option is find somebody who can sit down in front of you own computer and sort this out. We can keep guessing what the problem might be, but it you don't understand what the guesses mean, that might not help even if we guess right!

Yeah, this probably seems frustrating and ridiculous - but we've all been there, at some time in the past.
 
  • #12
Bashkir said:
Well, I am running linux on one of my school's computers.

I open vim and type the program directly as it is show above. I then save it to my desktop as hello.f90

Then, in the terminal, I type compile it:

gfortran hello.f90

and also, at the advice of someone else, tried

gfortran -o hello hello.f90

but both of them gave me the same error.

I'm not sure what the issue is. Like I said, I copied your program exactly and it compiled and ran fine on my Unix machine. My gfortran version is:

GNU Fortran (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50)
Copyright (C) 2007 Free Software Foundation, Inc.
 
  • #13
phyzguy said:
I'm not sure what the issue is. Like I said, I copied your program exactly and it compiled and ran fine on my Unix machine. My gfortran version is:

GNU Fortran (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50)
Copyright (C) 2007 Free Software Foundation, Inc.

That's pretty old. The current release is 4.9
 
  • #14
Bashkir said:
@Borek -- This is my first programming language, and I honestly have no idea what you just said haha.

It had nothing to do with programming, more with a format of the text file.

http://en.wikipedia.org/wiki/Utf-8#Byte_order_mark

I believe vim can be configured to add BOM to the files. I can be wrong though.
 
  • #15
Borek said:
It had nothing to do with programming, more with a format of the text file.

http://en.wikipedia.org/wiki/Utf-8#Byte_order_mark

I believe vim can be configured to add BOM to the files. I can be wrong though.

That's a good point. Why don't you try a different text editor - gedit or emacs and see if you have the same problem.
 
  • #16
Nevermind what this previously said.

I tried changing the text editor and that worked brilliantly. Thank you everyone so much for all of your help.
 
Last edited:
  • #17
Bashkir said:
I tried changing the text editor and used gedit instead. This seemed to work ok and when I compiled it it gave me an a.out file on my desktop. However, nothing seems to open that file.

It should also be noted that I specified an output name, I just don't know how to use this kind of file.

The .out file is the executable. Let's say the file is called a.out then to run it, just type:

$./a.out

To be clear, you don't type the $. This is the prompt supplied by the system.
 

1. What is Fortran and why is it used?

Fortran is a high-level programming language commonly used for scientific and numerical computation. It was designed to be efficient and fast for handling mathematical calculations, making it a popular choice for scientific and engineering applications.

2. How can I troubleshoot errors in my Fortran code?

One way to troubleshoot errors in Fortran code is to use a debugger, which allows you to step through your code line by line and identify where the error occurs. Additionally, you can use error messages and compiler warnings to help pinpoint the issue and make necessary changes to your code.

3. Can I use Fortran with other languages?

Yes, Fortran is interoperable with other languages such as C and Python. This allows for different parts of a program to be written in different languages and then integrated together for a more robust solution.

4. Are there any resources available for learning Fortran?

Yes, there are many resources available for learning Fortran, including online tutorials, textbooks, and coding communities. You can also refer to the official Fortran documentation and seek guidance from experienced Fortran programmers.

5. Is Fortran still relevant in modern scientific computing?

Yes, Fortran continues to be widely used in scientific computing due to its strong performance and extensive library of numerical and scientific functions. Many legacy codes are also written in Fortran, making it necessary for researchers to have knowledge of the language.

Similar threads

  • Programming and Computer Science
Replies
12
Views
2K
  • Programming and Computer Science
2
Replies
37
Views
3K
  • Programming and Computer Science
Replies
2
Views
2K
  • Programming and Computer Science
Replies
1
Views
2K
  • Programming and Computer Science
Replies
8
Views
1K
  • Programming and Computer Science
Replies
9
Views
3K
  • Programming and Computer Science
Replies
9
Views
1K
  • Programming and Computer Science
Replies
12
Views
1K
  • Programming and Computer Science
2
Replies
59
Views
9K
  • Engineering and Comp Sci Homework Help
Replies
12
Views
3K
Back
Top