Tagged Questions

18
votes
6answers
1k 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 ...
7
votes
4answers
8k 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 ...
6
votes
2answers
2k views

Fortran intent(inout) v's no 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) ...
5
votes
3answers
138 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 ...
4
votes
4answers
175 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
3answers
75 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 ...
4
votes
2answers
181 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
2answers
249 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 ...
3
votes
1answer
63 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
81 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 ...
3
votes
2answers
308 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
3answers
954 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
2answers
113 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
169 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
702 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 ...
3
votes
4answers
4k 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 ?
2
votes
1answer
63 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 ...
2
votes
1answer
124 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 ...
2
votes
3answers
108 views

StdErr in fortran90?

I've had a quick look round and I can't see how to get fortran to output error messages to stderr. I've heard it used to be write(5,fmt=.... as 5 was stderr. I know the way to do it with stdout is to ...
2
votes
1answer
98 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 ...
2
votes
3answers
81 views

fortran modules — finding where variables are defined/assigned

I am trying to extract a portion of a large fortran to make it its own program. A particular subroutine imports many modules (only two shown here as an example): subroutine myroutine(aa,bb) use ...
2
votes
3answers
72 views

saving file position and returning in fortran 90

I am editing a fortran 90 to read a file. A particular file happens to be 'contaminated' with some extra information, so I wanted to attempt a read and then rewind; reread if in error: ...
2
votes
2answers
125 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 ...
2
votes
1answer
78 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 ...
2
votes
2answers
148 views

Why is my fortran array not allocated any more inside function?

I have a fortran type which has an entry which is a type again. This type has a allocatable integer array: type inner integer, allocatable :: dyn_arr(:) integer another_var end type type ...
2
votes
3answers
183 views

opening multiple files in FORTRAN 90

I would like to open 10,000 files starting from abc25000 until abc35000 and copy some information into each file. The code I have written is as below: PROGRAM puppy IMPLICIT NONE integer :: i ...
2
votes
3answers
220 views

Smart way to pass arguments in Fortran 90

I am a Fortran novice. I am trying to write a subroutine that will take in four arguments from the main program, and then outputs to the main program an array that involves the four arguments that ...
2
votes
1answer
183 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 ...
2
votes
1answer
144 views

multiple unrecognized options in f77

I'm attempting to compile some complete Fortran code developed by someone else. The makefile makes references to CC, F77 and F90. Our server doesn't have F90 on it, but I could probably ask for it ...
2
votes
1answer
62 views

Format statements in Fortran modules

I have a module with a number of subroutines that all use the same set of formats for output. Right now, I have to declare the formats in every subroutine. Is there a way to declare them in the ...
2
votes
1answer
166 views

Function interface in Fortran 90/95

I have a program that calls a subroutine which then calls a function. I am somewhat confused by Fortran's requirements for function type declaration. I have declared the type in the function (i.e. ...
2
votes
5answers
445 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 ...
2
votes
1answer
369 views

passing assumed-shape arrays in two levels of subroutines (Fortran 90)

I have had problems calling successive subroutines with assumed-shape arrays in Fortran 90. More specifically, I call two levels of subroutines, passing an assumed-shape array as a parameter, but in ...
2
votes
1answer
263 views

Fortran 95: inline evaluation of if-conditions

Here a small snippet of code that returns epsilon() for a real value: program epstest real :: eps=1.0, d do d=1.0+eps if (d==1.0) then eps=eps*2 exit else eps=eps/2 end if end ...
2
votes
2answers
932 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 ...
2
votes
1answer
227 views

Reading variable length/types row in Fortran

I have a row of data in fortran, and I need to read in the different values. The number of values can be anything, and the type as well. Examples 0.45 1 T F or 0.45 1 T 2.45 18.0 45.2 how can I ...
2
votes
1answer
237 views

How does Fortran return arrays?

The subroutine Rule_Tn in the Fortran library CUBPACK needs a parameter Integrand describing the integrated vector function. It's a INTERFACE FUNCTION Integrand(NF,X) RESULT(Value) USE ...
2
votes
2answers
541 views

MPI_SCATTER Fortran Matrices by Rows

What is the best way to scatter a Fortran 90 matrix by its rows rather than columns? That is, let's say I have a matrix a(4,50) and I want to MPI_SCATTER it onto two processes where each part is ...
1
vote
0answers
32 views

How to create a managed build in Eclipse Phortran that supports module dependencies?

I have installed the new Phortran 7 as part of the PTP. I want to develop my code using an OOP approach which requires me to have many modules I have found that the managed build system doesn't ...
1
vote
2answers
118 views

How to increase array size on-the-fly in Fortran?

My programme is running though 3D array, labelling 'clusters' that it finds and then doing some checks to see if any neighbouring clusters have a label higher than the current cluster. There's a ...
1
vote
1answer
125 views

Fortran 90: DSYEV and associating eigenvalues and eigenvectors

I am very new to programming and fortran in particular. I am using the LAPACK (Linear Algebra Package) software package for Fortran to find the eigenvalues and eigenvectors of a large symmetrical real ...
1
vote
0answers
156 views

Fortran 90/95 OpenMP reduction with an array (sum)

I'm working on adding some OpenMP directives to a large set of fairly expensive nested loops. I believe I need to use a reduction clause with my directive since the operations on the array on not ...
1
vote
2answers
45 views

is CARRIAGECONTROL= ' NONE ' option a standard f90 IO?

I want to access a text file in a C-like fashion. The option CARRIAGECONTROL= 'NONE' apparently achieves this, according to this page. Is it a standard option ?
1
vote
2answers
73 views

Illegal use of derived type with function call

I have a simple function that returns a time object based on a time string: FUNCTION getTime(timeStr)RESULT(time) IMPLICIT NONE CHARACTER(LEN=19),INTENT(IN) :: timeStr TYPE timeType INTEGER :: ...
1
vote
3answers
89 views

logical expression in fortran

*I am trying to group set of data according some condition using FORTRAN code. The code is as below. gauche = 0.0 trans = 0.0 do i = 1, total_data !write(*,*) nombor(i), dihedral(i) if ( (0 > ...
1
vote
1answer
54 views

getting error on building a FORTRAN program

this is my one subroutine in fortran program subroutine selfile(name) ! call Window dialog to select file use dfwin type T_OPENFILENAME sequence real ...
1
vote
1answer
69 views

getting error on building a FORTRAN program

i am writing a fortran program in which one line is written like this open(unit=un1,file=filenm,form='unformatted',buffered='yes',status='replace',buffercount=127) i have defined character*256 ...
1
vote
3answers
79 views

No lifting of scalar arguments to arrays in Fortran

Why is it that Fortran will promote a scalar expression to an array, in an expression, but not as an argument to a procedure? In particular, why did the standards body make this design decision? Is it ...
1
vote
1answer
148 views

Fortran: Read one value at a time from a line

I am using FORTRAN to read in data from an ASCII text file. The file contains multiple data values per line but the number of values per line is not constant. 101.5 201.6 21.4 2145.5 45.6 21.2 478.5 ...
1
vote
0answers
182 views

FFTW: Trouble with real to complex and complex to real 2D tranfsorms

As the title states I'm using FFTW (version 3.2.2) with Fortran 90/95 to perform a 2D FFT of real data (actually a field of random numbers). I think the forward step is working (at least I am getting ...

1 2 3