Fortran is a general-purpose, procedural, imperative programming language that is especially suited for numeric computation and scientific computing.
0
votes
2answers
20 views
Force a SAVE in every subroutine using gfortran
We have a big software package written time ago in Fortran 77 using a Compaq compiler that assumed a SAVE in every subroutine, so no subroutine has a explicit SAVE in the code.
Now I had to reuse ...
2
votes
2answers
50 views
Data inheritance of subclass in Fortran 2003/2008
In Fortran 2003, if an variable is declared as PRIVATE in a superclass, the subclasses will not be able to access it. But if all the variables are declared as PUBLIC, the program will lose the ...
-5
votes
0answers
44 views
How to run my Fortran code on Mac?
GCC successfully complie my Fortran code and created .exe file.
Then how can I run that .exe to file to check my Fortran program work properly?
I'm running it on Macbook. .exe file is not ...
1
vote
1answer
55 views
Dynamic Memory Allocation in Fortran77 code (PNL Allocator)
I am working on an application, which is written primarily in Fortan77.
Since fortran77 does not support dynamic memory allocation, the code utilizes the
PNL Dynamic Memory ...
-1
votes
0answers
64 views
Fortran 90: variables changing on their own/ will not change when asked to
I am writing a code with a lot of embedded Do loops. Some are "Do l=1,frame" type loops and some are "Do while (chi<1)"
My numbers were goofy so I went hunting in my code. (SNIPPET BELOW:)
...
0
votes
1answer
36 views
Using an array coming from a module to be used in another subroutine or main program in Fortran
I'd be glad if somebody could help me with this. I'm studying modules in fortran, and I have a question. Let's say that my module creates a matrix [A(3,3)] that is read from user's input. Then, I'd ...
0
votes
2answers
51 views
Should casting from ``real`` to ``double precision`` in FORTRAN be affected by the compiler?
I have a FORTRAN code that I need to run on a server. I noticed that the results are a little different between the two machines. Looking into it, I learned that the difference rise from a function ...
1
vote
1answer
45 views
Function pointers in fortran
is it possible to have function pointers in Fortran? Right now I have a code with some lines like this:
subroutine flag(iflag,a,b)
integer n, a, b, ii, iflag
do ii = 1, n
if (iflag.eq.0) a+b
...
5
votes
2answers
147 views
A simple test case between clang++/g++/gfortran
I ran across this question on scicomp which involves computing a sum. There, you can see a c++ and a similar fortran implementation. Interestingly I saw the fortran version was faster by about 32%.
...
1
vote
1answer
37 views
Locate linking location used by visual studio
This seems like it would be a common question, but I can't seem to find an answer:
Is there a way to locate the specific library that VS uses to link a particular function at link time?
I'm using ...
0
votes
1answer
68 views
Use Pipe between FORTRAN and C++
I am trying to pass large amount of data (double numbers) from a FORTRAN program to a C++ Program using pipe method.
I followed http://msdn.microsoft.com/en-us/library/ms682499(VS.85).aspx for the ...
1
vote
4answers
93 views
Passing large amount of data from FORTRAN to C++
What is the best and most efficient method to pass large amount of data (double numbers) from a FORTRAN program to a C++ program? right now I am using binary file but it is not fast enough!
I tried ...
0
votes
1answer
65 views
Missing FFTW libraries
I'm trying to compile a code written in fortran90/95 and I'm getting this error:
user:~> make
ifort -O3 -lmpi -L/opt/local/intel/fftw/lib -I/opt/local/intel/fftw/include - ...
-2
votes
0answers
63 views
how to convert following FORTRAN 77 code to c++? [closed]
nPDB=0
OPEN(11,file=vidlist)
do while (.true.)
if(iRBox.eq.1) then
read(11,101,end=201) blx,bly,blz,pdb
else
read(11,108,end=201) pdb
blx=999999.0
bly=999999.0
...
2
votes
2answers
45 views
Makefile with Fortran - src and bin directories
I'm having some trouble understanding how to design my makefile to build my project the way I want to. Specifically, I can't figure out how to keep all source files in a src directory, while putting ...
0
votes
1answer
43 views
Unexpected data declaration statement
Folks,
I'm writing a code for LU decomposition and I don't know how to fix the "unexpected data declaration statement" pointed at line 8 (where I'm declaring an array. See the code fragment). Why is ...
1
vote
2answers
51 views
Store arithmetic operators in an array with Fortran
I would like to solve a given equation of the following kind with FORTRAN:
1 ? 2 ? 3 = 7
In this equation only the arithmetic operators are missing and the solution would be '+' for the first ...
0
votes
0answers
83 views
Output of program depends on arbitrary print statements?
I have a Fortran 95 code whose output seems to be a function of things that it shouldn't be a function of. Specifically, the following scenerio is happening:
Run code with version A; it doesn't work ...
1
vote
2answers
67 views
is there an easy way to find index array zeros in Fortran?
I'm searching for intrinsic fortran functions to help me find the array index with zeros, or other value.
I only found minloc function, but I think this is not suitable.
Is there an matlab find ...
0
votes
2answers
48 views
Starting reading from specific line numbers in Fortran
I have a file with 1000s of numbers like:
0000
0032
1201
: :
: :
: :
2324
Depending on an input parameter "n", I want to read "m" numbers from this file from line numbers "n" to "n+m-1".
Any ...
1
vote
1answer
46 views
Debugging a fortran dll called by a C++ program in Visual Studio 2010
I'm having problems debugging a C++ program which uses a Fortran DLL. I'd like to step through the C++ code until I hit the call to the Fortran DLL and then step into the fortran code. Is this ...
0
votes
1answer
46 views
cmake missing fortran module dependency in preprocessor directive
I'm run into a problem where Cmake is missing a dependency. The code in question looks like.
SUBROUTINE foo
USE A
#ifdef C
USE B
#endif
...
It looks like the ...
2
votes
0answers
35 views
Fortran extension to Python via f2py: How to profile?
I'm using an extension to Python (2.7.2) written in Fortran (gfortran 4.4.7) compiled via f2py (Ver. 2).
I can profile the Python part with cProfile, but the result does not give any information ...
0
votes
0answers
43 views
Fortran FFTW with strides ''Matlab-like''
I am a newbie in fortran, and trying to transform my matlab code efficiently to .f
I am using the fftw3 package and need ffts with strides complex to complex. e.g. 2 dimensions out of 3d array should ...
0
votes
0answers
46 views
doxygen error state 21 with fortran code
I was searching the web for help and didn't find any. Thats why I thought it might be a good idea to document my problem here.
I had the following problem while documenting a really old (15-20 years) ...
1
vote
1answer
74 views
Draw from a conditional multivariate normal distribution in fortran
I am trying to write a fortran subroutine to draw a subsample from a multivariate normal distribution conditional on the state of the other subspace. Basically:
(x1, x2)' ~ N( (mu1, mu2)', Sigma)
...
0
votes
1answer
49 views
Pointer to a function inside a derived type on a module in fortran
I guess I could easily use some help here, since I'm messing around with some fortran 2003 but can't seem to understand how to do things really.
The fact is that I need to write a fortran code that ...
0
votes
1answer
56 views
ODE solving library for Fortran, to be used on Ubuntu x64
As part of a larger program, I need to solve a quite simple ODE in Fortran. To avoid having to implement the solver myself (and surely introduce a couple of bugs before I get it right) I thought I'd ...
5
votes
1answer
134 views
Is it possible to map a discontiuous data on disk to an array with python?
I want to map a big fortran record (12G) on hard disk to a numpy array. (Mapping instead of loading for saving memory.)
The data stored in fortran record is not continuous as it is divided by record ...
0
votes
1answer
53 views
Suggestions for data extraction Data in fortran
I use F95/90 and IBM compiler. I am trying to extract the numerical values from block and write in a file. I am facing a strange error in the output which I cannot understand. Every time I execute the ...
0
votes
1answer
46 views
Compiling a fortran 90 program under cygwin/gfortran error messages?
In the Cygwin terminal I enter
$ gfortran -o threed_euler_fluxes_v3.exe threed_euler_fluxes_v3.f90
and I get the compiler error
...
0
votes
2answers
60 views
Looping through many different arrays of different dimension
I have a bunch of arrays of different length which are all something like a1 = [1.0], a2 = [1.0,2.0]etc. I need to loop through all the arrays in a function and perform operations with their elements, ...
0
votes
1answer
44 views
Automated sparse matricies in Fortran
I know that Intel Fortran has libraries with functions and subroutines for working with sparse matricies, but I'm wondering if there is also some sort of data type or automated method for creating the ...
0
votes
1answer
29 views
fortran rewind state-rewind (variables)
I am studying now someone's Fortran code file:
REWIND NRTAP
REWIND NWTAP
REWIND 9
As far as I know, rewind statement sets point to initial point.
However, when variable name is after rewind state,
...
-1
votes
0answers
30 views
fortran to matlab, how make subroutine argument's fortran in matlab
In the fortran code, I make subroutine VECT(N1,N2,N3,NOPN).
N1, N2, N3, NOPN is called from other subroutine,
the value is calculated using VECT subroutine.
The input data(N1,N2,N3,NOPN) is depending ...
0
votes
1answer
45 views
How to translate fortran goto state to matlab [duplicate]
How to convert goto state(fortran) to matlab?
That means, if NOPN is equal 1, implement line 1,
NOPN is equal 2, implement line 2?
subroutine VECT(N1,N2,N3,NOPN)
COMMONS WORMX(3,24), QVALU,DJACB
...
0
votes
1answer
79 views
Fortran - explicit interface
I'm very new to Fortran, and for my research I need to get a monster of a model running, so I am learning as I am going along. So I'm sorry if I ask a "stupid" question.
I'm trying to compile (Mac ...
-2
votes
2answers
43 views
Fortran to matlab 'undefined function error'
I want to covert fortran to matlab.
-fortran code
DO 20 I=1,3
DO 20 J=1,4
20 WORMX(I,J)=0.0
DO 24 INODE=1,8
IPOIN=IABS(LNODS(IELEM,INODE0)
DO 24 K=1,3
GTOP=COORD(IPOIN,K)
...
3
votes
1answer
53 views
Improve precision on variables defined by integer quotient
Say I have the following program:
program derp
implicit none
integer, parameter :: ikind = selected_real_kind(18)
real (kind = ikind) :: a = 2.0 / 3.0
print*, a
end program derp
The ...
1
vote
1answer
69 views
How to speed up simple Fortran OpenMP?
I have a simple Fortran program in which the main component is a 4-core OpenMP portion that calculates a dot product
OMP_NUM_THREADS=4
...
Do 30 k=1,lines
co(k)=0
si(k)=0
co_temp=0
si_temp=0
...
2
votes
1answer
105 views
Can GDB be used to print values of allocatable arrays of a derived type in Fortran 90?
I have the following data structure in a Fortran90 program:
TYPE derivedType
CHARACTER(100) :: name = ' '
INTEGER :: type = 0
REAL(KIND(1.0D0)) :: property = 0.0
END ...
0
votes
0answers
38 views
Fit fortran input parameters with python
I have a f77 code that takes parameters from an input text file, computes what I want, and then gives the results in an output text file. I would like to fit to some data the fortran input parameters ...
3
votes
1answer
76 views
Fortran DEALLOCATE
I am currently trying to code a little subroutine in Fortran to deallocate all allocated variables in memory when my program comes to an error, i.e., a failed to load file or an inexistent needed ...
0
votes
1answer
53 views
What are the open source equivalents of Apple's Accelerate Framework libraries?
If we take a look under the umbrella of Accelerate Framework we will see several libraries:
I know that BLAS and LAPACK are open source and that the same code used otherwhere can be compiled against ...
0
votes
0answers
35 views
Why isn't the size specifier working in my FORTRAN inquire statement?
I am trying to work with FORTRAN INQUIRE and the relatively new SIZE specifier, and getting some curious results.
My test code:
program howbig
integer :: fsize=0
logical ex
character*64 :: ...
0
votes
1answer
36 views
FORTRAN INQUIRE statement and FLEN parameter
Apparently, some versions of FORTRAN allow a parameter FLEN in the INQUIRE statement. Pretty useful thing, it will give the size of the file in question in bytes. But, AFAICT, this is pretty new. ...
1
vote
2answers
56 views
allocatable user derived types
I have a question about Fortran and correct allocation of
allocatable user derived types.
Here is my code:
module polynom_mod
implicit none
type monomial
integer,dimension(2) :: exponent
end ...
0
votes
1answer
34 views
visual studio: how to catch non-matching number of dummy/formal argument in a big old code without interfaces
I am using Visual Studio on Windows together with Intel(R) Visual Fortran Composer XE 2011. I have a big old code with thousands of subroutines. I did some substantial changes adding other hundreds ...
0
votes
2answers
55 views
List all subroutines in a fortran module
Is it possible to obtain a list of all functions and sobroutines defined in a fortran module, from within fortran? For example, in python, I can do this:
import math
dir(math)
and I get a list of ...
1
vote
0answers
47 views
Creating DLL for C# using C and Fortran
I have some legacy code written in C and Fortran. I've figured out some input and output parameters for the code. I'm trying to create a .DLL with C and Fortran, so I can conveniently use them in a ...

