The standardized successor to FORTRAN 77, released as an ISO standard in 1991 and an ANSI Standard in 1992.

learn more… | top users | synonyms

0
votes
1answer
23 views

Fortran behavior of a tiny program

I am new in fortran90 (30 minutes ago...) and I have this program: program example1 implicit none real (kind=8) :: x,y,z x = 3.d0 y = 2.d-1 z = x + y print *, "y = ", y ...
0
votes
0answers
14 views

a program in Fortran90

I have this code in fortran 90 I think the code does not have any problem, PROGRAM xfitexy ! driver for routine fitexy USE nrtype USE nr USE ran_state, ONLY : ran_seed IMPLICIT ...
-2
votes
1answer
26 views

Error in compiling

I have this code: PROGRAM xfit ! driver for routine fit USE nrtype; USE nrutil USE nr USE ran_state, ONLY : ran_seed IMPLICIT NONE INTEGER(I4B), PARAMETER :: NPT=100 ...
1
vote
1answer
18 views

LAPACK/BLAS matrix multiplication in fortran returns zeros

I'm a fortran beginner and simply wanted to try if i get a matrix multiplication to work. program testlapack implicit none COMPLEX, DIMENSION(2, 2) :: A, B, Output A = reshape((/ 4, ...
0
votes
1answer
38 views

Link between variables in different programs in Fortran (f90)

I am trying to structure my Fortran program appropriately. I have a program GridGeneration.f90 that generates my grid mesh. I want to control the size of the grid in my main program, i.e. the grid ...
0
votes
1answer
39 views

can not correctly pass an array when calling a fortran function from c

I need to call a fortran function from c and one of the parameter is an array, the c code is: float x[18] = {...}; pot = f_(x); where x is an float array with 18 elements, and the fortran code is ...
0
votes
3answers
54 views

Function in Fortran

I have written this very simple code in fortran: program su implicit none real ran3 write(*,*) ran3(0) end program su real*8 function ran3(iseed) implicit none integer iseed ...
2
votes
1answer
93 views
+50

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
26 views

Using fortran90: read gml file with different format of the coordinates

I am new to to fortran90. I am working with input and output file. Currently I am trying to read a gml file, specifically the extracting the line of for the lat long coordinates of ...
0
votes
1answer
31 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. ...
0
votes
0answers
34 views

COUNT in FORTRAN, operate in part of a matrix

I have a matrix A(0:101,0:101), I want to count the number of positive values in A(1:100,1:100), exclusive of the borders. I try to use COUNT(A(1:100,1:100)>0),but cannot compile successfully.
0
votes
1answer
36 views

Does memory get deallocated once the pointer goes out of scope?

Suppose I have this subroutine: subroutine a () integer, pointer :: b allocate(b) end subroutine a The variable b is on the subroutine's stack and will therefore get destroyed once the ...
-1
votes
0answers
29 views

*** glibc detected *** ./test_input: free(): invalid pointer: 0x0000000000cc6750 ***

I have written a FORTRAN 90 code to check whether the input files are read properly or not by the main code. I don't see any problem with the syntax in my program. I use ifort (Intel Fortran Compiler ...
0
votes
1answer
96 views

How to use Fortran 77 subroutines in Fortran 90/95?

I'm writing a code with Fortran 90 and now I need to use the special functions in amos Fotran 77 library(http://www.netlib.org/amos/). Now I found a module interface for those ...
-1
votes
2answers
55 views

writing bash like script in fortran

We can write simple bash script to easy our tasks in many ways. For example as the bash scritp below. #!/bin/bash name="Vijay" echo "My name is $name." echo "$name does no like to play football" ...
0
votes
2answers
41 views

Makefile confusion with fortran and c

this is my first time making a make file. I'm a little confused since my fortran code uses some functions defined in c source files. This is what I've written so far: CC = ...
-2
votes
0answers
18 views

How to read an IGES file with Fortran [closed]

I need to read an IGES file (only the 'P' section) and extract the entities along with their parameters. Is there a fortran source code that does this? Thank you.
0
votes
2answers
42 views

Compiling and linking modules using other modules

I am working on a Fortran library that contains many different functions. To develop it and maintain it more easily, I have divided this library into several modules (e.g., part1.f90, part2.f90, ...
0
votes
1answer
71 views

Looping over variable file names

I am using Fortran to do calculation on huge data set which was split into many files. The names of the files are: maltoLyo12per-reimage-set1.traj maltoLyo12per-reimage-set2.traj ...
1
vote
3answers
64 views

Undefined reference to main fortran program

I am writing a fortran code for benchmarking three loop kernels: program Kernel_benchmark implicit none double precision,dimension (:),save,allocatable:: a,b,c,d,x,y ...
0
votes
0answers
36 views

i386 exe file that refuses dosbox, on x64 windows

I am trying to make a code run on my machine (windows 7 x64), it is a fortran 90 code that needs a third-party provided i386-based dll to work. When I tried compiling it (with latest gfortran and ...
0
votes
0answers
58 views

Syntax error in Fortran while using a timing function implemented in C

Hi I've been given a source code in C , which I need to use to calculate the time taken for my code to run in fortran. The C source code containing the timing function is given below: #include ...
1
vote
1answer
21 views

compilation error with MPI_type_create_resized in Fortran 90

I need to scatter a 2D array with non-contiguous blocks in a Fortran 90 code. The code need to call MPI_TYPE_CREATE_RESIZED to change the bounds and extend of the new vector type before calling ...
0
votes
2answers
83 views

Fortran fomat statement with highest precision in the system

Someone wanting less precision would write 999 format ('The answer is x = ', F8.3) Others wanting higher output precision may write 999 format ('The answer is x = ', F18.12) Thus it totally ...
-2
votes
2answers
70 views

Fortran Make file for windows

Please could you help me how to convert FORTRAN make file for Linux to a make file for FORTRAN under windows? my Linux make file here https://www.dropbox.com/s/ui6pbtwmumc5zpz/makefile.txt Also I ...
0
votes
2answers
95 views

defining path for file in FORTRAN

In bash I could write a simple script like below; to read the content of a file in the folder as I define the path for the file using environment variable "fileplace" #!/bin/bash ...
0
votes
0answers
65 views

USE modules with CONTAIN

I have a code that looks like the following subroutine sub1 use globals ... contains subroutine subsub1(x) ... end subroutine end subroutine Is ...
0
votes
1answer
45 views

How solve Fortran runtime error using Amber12

Im using amber12 software used for molecular mechanical force fields for the simulation of biomolecules, i follow the installation instructions described in the next link Intallation of amber in Mac ...
0
votes
1answer
98 views

gfortran, unclassifiable statement and format labels not defined

I have the following subroutine, which compiles using the intel fortran compiler but does not compile using gfortran. This is the subroutine code: subroutine makepar ...
0
votes
0answers
37 views

Trapezoidal rule using subroutine

I am trying to write a program on fortran using subroutines. The program needs to be able to integrate the function 3x^2-5x-4 from x=3 to x=8 using the trapezoidal rule. So far I have wrote: PROGRAM ...
0
votes
1answer
47 views

Vim syntax highlighting for multiline fortran openmp directives

I'm using modern fortran for doing parallel programming. I'm using vim and it's been really annoying me that the fortran.vim syntax files don't seem to handle compiler directives like !$omp or !dir$. ...
1
vote
1answer
35 views

Generate sound/beep in fortran 90/95

I need to generate a sound in fortran when my run ends. I need something similar to "\a" or Beep(,) that are used in c++. Thanks
0
votes
1answer
40 views

Running Fortran on Xcode

I am trying to run sample Fortran code on Xcode 4.3 using a 64-bit compiler and it will not build correctly. The main problem is that despite my best efforts, I cannot get the separate .f90 files to ...
1
vote
1answer
49 views

How to call a fortran subroutine with allocatable type output from c sharp

I have tried to do this for hours. I have the Fortran code, and want to use it in my c sharp project. subroutine lean(nx,nlam,flmin, ulam,thr,isd,intr,maxit,lmu,a0,ca,ia,nin,rsq,alm,nlp,jerr) ...
0
votes
0answers
51 views

comparing derived types in fortran

I was trying to compile a project which solves the Navier-Stokes on a sphere available here: https://fms.gfdl.noaa.gov/gf/ the default compiler used is ifort, and I wanted to use gfortran, since I ...
0
votes
3answers
72 views

passing function to subroutine in fortran

I am trying to write a subroutine (for minimisation) that has two arguments: an array x of any length a function f that takes an array of that length and returns a scalar example module: module ...
1
vote
1answer
54 views

FORTRAN 90 Open file issues

I've been searching around this code for long now and can't seem to find the reason of this not working... Maybe an outsiders view can help. !I open File 1 !Opening File 1 open(2, ...
0
votes
1answer
132 views

f951 error: unrecognized command line option

I am on linux and I am compiling the following: mpif90 -shared source.F90 object1.o object2.o -L/some/path -Qoption,link,-rpath=/some/path -I/some/path -lhdf5 -lhdf5_fortran -fPIC -fpp -DDECDEC_ ...
0
votes
1answer
72 views

fortran 90 (floating point error: overflow)

i am dealing with the code below and i am recieving 'runtime error M6104:MATH floating point error:overflow'. i searched the error online and it is written the output values have high range than input ...
1
vote
2answers
72 views

Using python-ctypes to interface fortran with python

Experience: fortran for about 3 months python - intermediate : never used the ctypes module in python before this I was looking for a way to use the fortran code for my doctoral work in python - ...
0
votes
3answers
94 views

Fortran 90: How to correctly read an integer among other real

I have created a Fortran 90 code to filter and convert the text output of another program in a csv form. The file contains a table with columns of various types (character, real, integer). There is a ...
0
votes
0answers
48 views

External C function call does not execute inside Fortran

I've got a strange issue that I have not been able to solve. I will simplify my problem for clarity: I have two projects, one is a C++ wrapper that communicates with my program's engine code (written ...
0
votes
0answers
31 views

How to deal with the extremely large expressions in Fortran?

I have a fortran program like this, program test integer,parameter :: f=selected_real_kind(20) Real(kind=f)::b1,b2,c1,v,xd,xe,res b1=1._f b2=0.5_f v=1._f/3._f c1=0.25_f xd=0.2_f xe=1._f/6._f res= ...
1
vote
1answer
118 views

FORTRAN 90 How to find out the number of files on a folder

quick doubt, I need to read all the files from a folder, but I don't know how many files are there. I know how to open them all, just don't know when to stop, i.e. when all the files are read. ...
0
votes
0answers
70 views

reading in large data set in Fortran

I am attempting read a large data file into Fortran it contains about 40960000 rows, I later convert it to a matrix so it would be 6400 * 6400. When I try my code using a much smaller data set it ...
-3
votes
2answers
387 views

How to Open, Read, and Write files in Python 2.7 — Converting code from fortran 90 to Python

I'm converting some code from fortran90 to python 2.7 and am having trouble understanding the arguments the in Open, Write, and Read functions in the fortran code, as well as knowing what elements are ...
0
votes
0answers
98 views

rank mismatch in argument (Fortran 90)

I am dealing with the code which can help me to solve fluid dynamics problems with using LBM methods. Anyways, since I am beginner on FORTRAN, I couldn't solve the rank mismatch error. I think it is ...
2
votes
3answers
168 views

Cannot get data from a returned C float pointer in Fortran 90

I am calling a C function from a Fortran 90 program (I have to use Fortran 90). This C function takes a couple arguments and returns a float pointer. I cannot seem to print the returned data correctly ...
0
votes
1answer
97 views

Writing binary format on console in FORTRAN under windows

I am trying to write in binary format on console in FORTRAN under windows but I can not do it. I know I can use Open() function and use Form='Unformatted' to open a file and write in binary format. ...
0
votes
2answers
100 views

how to call a Fortran90 function included in a module in c++ code?

I m including a fortran90 program that is not mine in my C++ project . In the first stept I try to call the function by their name_() and i get the error "undefined reference to ...

1 2 3 4 5 9