The standardized successor to FORTRAN 77, released as an ISO standard in 1991 and an ANSI Standard in 1992.
23
votes
7answers
4k views
Writing robust and “modern” Fortran code
In some scientific environments, you often cannot go without FORTRAN as most of the developers only know that idiom, and there is lot of legacy code and related experience.
And frankly, there are not ...
12
votes
4answers
16k views
How do you USE Fortran 90 module data
Let's say you have a Fortran 90 module containing lots of variables, functions and subroutines. In your USE statement, which convention do you follow:
explicitly declare which ...
8
votes
2answers
6k views
Fortran intent(inout) versus omitting intent
Good practice dictates that subroutine arguments in Fortran should each have a specified intent (i.e. intent(in), intent(out) or intent(inout) as described this question):
subroutine bar (a, b)
...
6
votes
3answers
2k views
Standard input and output units in Fortran 90?
How can I read and write to the standard input, output and error streams stdin, stdout and stderr in Fortran? I've heard writing to stderr, for example, used to be write(5, fmt=...), with 5 the unit ...
6
votes
1answer
4k views
What flags do you set for your GFORTRAN debugger/compiler to catch faulty code?
i think i wont find that in any textbook, because answering this takes experience.
i am currently in the stage of testing/validating my code / hunting bugs to get it into production state and any ...
6
votes
1answer
527 views
Write to fifo (named pipe)
I'm trying to get a fortran 90 application to open a fifo and write formatted data to it. I've stripped this down to a minimal example. Let foo.f90 be the following program:
program foo
...
5
votes
2answers
611 views
Deep array copy in Fortran
I need a deep copy of a (real) array in Fortran (90), but am not sure exactly how to get one, since I do not completely understand how references work. Intuitively, I would expect this to get me ...
5
votes
3answers
2k views
Correct use of modules, subroutines and functions in fortran
I've recently learnt about the interface block when adding a function to my FORTRAN programme. Everything works nice and neatly, but now I want to add a second function into the interface block.
Here ...
5
votes
2answers
2k views
Is There a Better Double-Precision Assignment in Fortran 90?
In Fortran 90 (using gfortran on Mac OS X) if I assign a value to a double-precision variable without explicitly tacking on a kind, the precision doesn't "take." What I mean is, if I run the ...
5
votes
1answer
917 views
How to get proper text-color-highlighting for Fortran 90 in Sublime Text 2?
There are a couple of links on sublime forum, on how to get Sublime Text 2 to work with Fortran 90 here http://www.sublimetext.com/forum/viewtopic.php?f=4&t=770, but they don't quite seem to work ...
5
votes
1answer
269 views
Fortran90 to C# Conversion Issue
I am converting some Fortran90 code to C#. I have some knowledge of Fortran77 but am not familiar with Fortran90. I have run across the following line of code that I am not certain how to translate.
...
5
votes
3answers
221 views
Program stalls during long runs
Fixed:
Well this seems a bit silly. Turns out top was not displaying correctly and programs actually continue to run. Perhaps the CPU time became too large to display? Either way, the program seems ...
5
votes
1answer
152 views
A Makefile Puzzle: Multiple Programming Languages
I have a simple test Makefile:
hello: hello.o
.SUFFIXES: .c .f90 .o
.f90.o:
pgf90 -c -o $@ $<
.c.o:
cc -c -o $@ $<
You don't have to tell me that it having a foo.c and a foo.f90 in ...
4
votes
4answers
1k views
Are FORTRAN 77 programs faster than Fortran 90 ones?
Today I was reading code from some very popular numerical libraries written in FORTRAN 77 such as QUADPACK (last updated in 1987), and I was wondering if there is any reason not to rewrite those ...
4
votes
2answers
1k views
How to pass allocatable arrays to subroutines in Fortran
The following code is returning a Segmentation Fault because the allocatable array I am trying to pass is not being properly recognized (size returns 1, when it should be 3). In this page ...
4
votes
4answers
11k views
fortran SAVE statement
I've read it's entry in the language reference (Intel's), but I cannot quite grasp what it does. Could someone in layman's terms explain it to me, what it means when it is included in a module ?
4
votes
1answer
187 views
Overloading functions with Fortran
In Fortran 90, we can overload functions with an interface. However, according to this site, we cannot define these functions with the same arguments name. With gfortran, it does not seem to be a ...
4
votes
1answer
881 views
Can Fortran read bytes directly from a binary file?
I have a binary file that I would like to read with Fortran. The problem is that it was not written by Fortran, so it doesn't have the record length indicators. So the usual unformatted Fortran read ...
4
votes
2answers
926 views
Coloured terminal output from Fortran
My program outputs state of computations to the terminal and includes quite a bit of information. I would like to, if possible, color code parts of the text.
I have seen how it can be done in Bash ...
4
votes
5answers
2k views
Stack overflow in Fortran90
I have written a fairly large program in FORTRAN90. It has been working beautifully for quite a while, but today I tried to step it up a notch and increase the problem size (it is a research ...
4
votes
1answer
153 views
Asynchronous MPI with SysV shared memory
We have a large Fortran/MPI code-base which makes use of system-V shared memory segments on a node. We run on fat nodes with 32 processors, but only 2 or 4 NICs, and relatively little memory per CPU; ...
4
votes
1answer
204 views
Calling function in same module in Fortran90
I am new to Fortran90 and I haven't found an answer to a problem I have.
I have a module written in Fortran with the some functions inside a module.
Stripped down version:
module vdiStringFunctions
...
4
votes
2answers
248 views
Reading C data file in F90
I am not an expert in programming but have some experience. It is more than a week that I am trying to read a data file from C into a Fortran program. C program saves a matrix in a bin format data ...
3
votes
4answers
1k views
Fortran: output format dependent on a variable
I would like to have a FORTRAN write statement formatted to depend on some variable.
For example, I could write:
write(*,'(3f15.3,3f9.2)') x,y,z,(var(i),i=1,nvari)
where nvari = 3
But, what if, ...
3
votes
1answer
525 views
Fortran accuracy and speed vs. C
This subject has probably been discussed hundreds of times. I'm not trying to claim
any language is worse or better. I'm just trying to learn how to accelerate my C codes.
So here are two codes to ...
3
votes
1answer
246 views
Arrays of pointers
I am trying to implement an array of pointers, so that I can loop over the elements. However I am not sure how to do this correctly:
TYPE(domain),POINTER :: d01,d02,d03
...
3
votes
1answer
1k views
Fortran:How to check if array contains value?
I've seen this asked for other languages, but having just found out how nicely fortran can handle arrays, I thought there might be an easy way to do this without loops.
Currently I'm searching over a ...
3
votes
2answers
436 views
Fortran 90 array pass by reference issue
What happens if I allocate a F90 pointer thus:
real, pointer :: abc(:)
allocate abc (nx*ny*nz)
I pass abc to a subroutine, where i redefine it as
real arg1(nx,ny,xz)
This seems to work fine.
...
3
votes
1answer
433 views
Fortran 90 - I/O passing variable as filepath
This seems like it should be an easy fix, but after searching for hours I cannot find a solution.
I want to save a filepath as a character variable, then use the variable in a I/O statement. Below ...
3
votes
1answer
145 views
Error: Statement Function is recursive
This is trying to solve a linear equation of 3*3 and print out the results, but it got problems in the commented lines:
I defined the module LinearSolution outside of program, should I define it ...
3
votes
2answers
303 views
How to get the name of a file acting as stdin/stdout?
I'm having the following problem. I want to write a program in Fortran90 which I want to be able to call like this:
./program.x < main.in > main.out
Additionally to "main.out" (whose name I ...
3
votes
2answers
3k views
How can I left-justify numerical output in fortran?
I am writing some simple output in fortran, but I want whitespace delimiters. If use the following statement, however:
format(A20,ES18.8,A12,ES18.8)
I get output like this:
p001t0000 ...
3
votes
1answer
124 views
When does a module go out of scope in Fortran 90/95?
My intended use is
program main
use mod
external sub
call sub
end program main
subroutine sub
! code here calls subroutines in mod
end subroutine sub
Specifically, will module mod be in ...
3
votes
1answer
176 views
Fortran strange IF
What does this Fortran90 code mean:
IF (J1-3) 20, 20, 21
21 J1 = J1 - 3
20 IF (J2-3) 22, 22, 23
23 J2 = J2 - 3
22 CONTINUE
I've seen in old project and I don't have any idea what this IF with ...
3
votes
2answers
301 views
6 dimensional integral by Trapezoid in Fortran using Fortran 90
I need to calculate six dimensional integrals using Trapezoid in Fortran 90 in an efficient way. Here is an example of what I need to do:
Where F is a numerical (e.g. not analytical) function which ...
3
votes
1answer
925 views
How can I implement a linked list in fortran 2003-2008
I need to implement a link list data structure for my molecular dynamics code in fortran 2003/2008 I am using the newest fortran compilers (Intel).
How do I come about implement the linked list in ...
3
votes
3answers
4k views
Skip a line from text file in Fortran90
I'm writing in fortran (90). My program must read file1, do something with every line of it and write result to file2. But the problem - file1 has some unneeded information in first line.
How can I ...
3
votes
1answer
48 views
Parallel IO & Append
When I run my small-scale parallel codes, I typically output N files (N being number of processors) in the form fileout.dat.xxx where xxx is the processor number (using I3.3) and then just cat them ...
3
votes
2answers
267 views
Fortran 90: Dynamic function creation from another function
I have a Fortran90 subroutine which takes a function as an argument, and I would like to pass a modified version of that function into another subroutine. I want the program to look something like ...
3
votes
1answer
206 views
Fortran 2003 bindings to library in C: how to translate enums and #defines?
I am writing Fortran bindings for C library.
What is best practice on translating constants defined (in library headers) using enum, e.g.
typedef enum cufftType_t {
CUFFT_R2C = 0x2a, // Real ...
3
votes
1answer
558 views
Fortran elemental functions vs elemental subroutines
Fortan allows elemental subroutines to have intent(inout) and intent(out) arguments, but elemental functions are only allowed intent(in).
Why is that? Is it just a stylistic convention, or is there ...
3
votes
1answer
234 views
vectorize a loop which accesses non-consecutive memory locations
I have a loop of this structure
Reference : Maxwell Code Example
do z=1,zend
do y=1,yend
do x=1,xend
k=arr(x,y,z)
do while(k.ne.0)
ix=fooX(k)
...
3
votes
2answers
1k views
Extreme newbie question - compiling a Fortran program with multiple parts
I'm very very new to Fortran and the whole Intel compiler thing (I'm using the Windows-based Intel compiler with IMSL library w/o Visual Studio integration, therefore command line only).
The problem ...
3
votes
2answers
770 views
Returning arrays strategy comparison
In Fortran, I can return arrays from a subroutine with three approaches. The first one is via an intent(out) parameter. The second one is via a function having the array as result. The third one is to ...
3
votes
1answer
2k views
Fortran 90 Presence Of Optional Arguments
I do not understand the behavior of the present() intrinsic function with pgf90 7.2. I wrote a 20 line sample program to test this, but the results still make no sense to me. Observe:
subroutine ...
3
votes
1answer
1k views
Fortran 90/95 library for sparse matrices?
I am looking for a library for dealing with sparse matrices in fortran 90/95. I only need very basic operations like matrix-vector multiplication. What do you suggest I use?
I have searched around ...
3
votes
2answers
147 views
printing the function name in fortran 90
I wrote a code that finds the root of a function whose name is provided among the arguments, I think I took it from Numerical Recipes. Something like
double precision function rtsafe(x_init, x1, x2, ...
2
votes
3answers
5k views
Reading a string with spaces in Fortran
Using read(asterisk, asterisk) in Fortran doesn't seem to work if the string to be read from the user contains spaces.
Consider the following code:
character(Len = 1000) :: input = ' '
...
2
votes
5answers
3k views
converter software for fortran 77 to fortran 90
i have coding for fortran 77 but i want to converted to fortran 90..where can i donwload the converter software??
2
votes
2answers
2k views
What does “%” mean / do in fortran?
I am trying to read some fortran code, but can not determine what the % (percentage sign) does.
it is in a line like:
x = a%rho * g * (-g*a%sigma + m%gb * m%ca * (1.6 * a%rho+g))
What does it ...

