Tagged Questions
0
votes
1answer
22 views
write in array format in fortran
I try to write an output file.dat with an nxn matrix format .
I write the code but the output is a column of value f.
Now the problem is: how can i change the output-format of the file to write?
...
0
votes
1answer
37 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
...
2
votes
1answer
104 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
2answers
84 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 ...
0
votes
1answer
51 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
104 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
54 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 ...
1
vote
2answers
75 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
1answer
186 views
Fortran I/O, first read is EOF?
I'm trying to use some old FORTRAN code with some new Java code which works in Windows(as an exe) but not in OS X. I try to build it in eclipse and I get
make: *** [all] Segmentation fault: 11
so ...
0
votes
2answers
48 views
Fortran 90 formatted output
I have three arrays, x,y,z.
I want to print these into a file with a character 'C' in front:
write(88,FMT1) 'C',(x(i),y(i),z(i),i=1,187)
Where FMT1 is defined as:
character(len=10) :: ...
0
votes
2answers
145 views
Convert FORTRAN DEC UNION/MAP extensions to anything else
I have some old f77 code that extensively uses UNIONs and MAPs. I need to compile this using gfortran, which does not support these extensions. I have figured out how to convert all non-supported ...
1
vote
1answer
51 views
difference results between 10**-2 and E-2
The following program print 1 for 100E-2 and gives 0 for 100*10**(-2), that means that
the operator exponent doesnot work for negative **, is that correct.
Thanks in advance
program testme
implicit ...
0
votes
1answer
83 views
Why does PGI not pick up on public attribute in this module?
Working with someone else's code here. It compiles just fine with gfortran. Under Portland Group, though, I get an error:
pgf90 -DsysLinux -DcompPGF90 -I/home/cables/GITM/share/Library/src -c -r8 ...
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 ...
0
votes
2answers
122 views
Array inside type array as function argument
I have the following program at hand
program foo
type bar
real, dimension(2) :: vector
end type
type(bar), dimension(3) :: bararray
call doSomething(bararray%vector)
end program
...
6
votes
1answer
529 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
...
0
votes
1answer
69 views
Array valued function to be called from type definition
While writing a library to read image values, I have the following problem:
I defined a new type called realimage. Within this type a function is referenced, which returns an array as a result.
...
0
votes
1answer
91 views
What is a handy way to make a novel Fortran library callable from C
I'm working on a small Fortran library (novel code) which is being called from several C/C++ applications. The library is of such kind when almost every subroutine could be separately called from ...
-1
votes
1answer
148 views
Fortran randomely writing data in file
How to write a text or dat file in FORTRAN like a 2D array of integers and each time to enter a value, if in any row there is no value just insert in the start but if some values exists insert to the ...
1
vote
2answers
2k views
How can gfortran tell if I am compiling f90 or f95 code?
I understand gfortran can compile f90 or f95? How does it know which one it is compiling? Also can it compile f77 code? Does ubuntu already have a fortran compiler or do I need to download gfortran?
0
votes
1answer
327 views
Fortran 90 with C/C++ style macro (e.g. # define SUBNAME(x) s ## x)
I am recently working with a F90 code project. I am using gfortran (linux and MinGW) to compile it. There is something interesting in file loct.F90.
# define TYPE real(4)
# define SUBNAME(x) s ## x
...
0
votes
2answers
389 views
OpenMP Crashing with Large Arrays
I'm using fortran 90 and openmp, but I keep encountering an issue when I try to parallelize loops using openmp when there are large arrays. For example, the following code:
PROGRAM main
IMPLICIT NONE ...
2
votes
2answers
371 views
Optimization Routine in Fortran 90
I am doing (trying to do) numerical optimization in Fortran 90, on a Windows 7 machine with the gfortran compiler. I have a function, pre-written by someone else, which returns the loglikelihood of a ...
1
vote
2answers
122 views
why do omp functions not work when constants are declared in a module?
i have a module 'gvars' defined for my global variable declarations. when i define
integer :: nthreads, max_threads, tid, omp_get_max_threads, omp_get_num_threads, omp_get_thread_num inside of my ...
-1
votes
1answer
1k views
How to use MPI (openMPI or MPICH2) with minGW - GNU gfortran compiler
I am using the eclipse PTP IDE to develop MPI code, I want to be able to compile MPI on windows, it seems to provide c++ and c binding, but I am writing using fortran and gfortran compiler and would ...
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 ...
1
vote
2answers
1k views
How to debug Fortran 90 compile error “There is no specific subroutine for the generic 'foo' at (1)”?
I am trying to write Fortran 2003 bindings to CUFFT library using iso_c_bindings module, but I have problems with cufftPlanMany subroutine (similar to sfftw_plan_many_dft in FFTW library).
The ...
0
votes
1answer
103 views
undefined symbol: vmldExp2
I am using f2py and Intel fortran compiler to wrap some fortran code which calls some math library like dexp and dpow.
The compilation went smoothly without reporting any err, but when I attempted ...
0
votes
3answers
237 views
Incorrect file permissions when calling C's open() function from fortran
I have a fortran program which calls a C function and opens a file using open()
main.f90:
PROGRAM TEST
integer :: oflag, mode
!Set oflag to O_CREAT|O_RDWR
oflag ...
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 = ' '
...
1
vote
1answer
1k views
Iterating over a FORTRAN character array
Ok, I'm having mucho trouble with the following Fortran 90 code. The program tester should create a character array called input, initialize all the entries to the space character, then get some ...
1
vote
1answer
434 views
Progress bar. [gfortran vs ifort]
I have wrote a genetic algorithm in fortran to be able to compute with a long double precision a generic fitness function. the first version (double precision) was wrote for gfortran where i have ...
0
votes
2answers
209 views
How do I set the correct compiler to use the -fastsee option
How do I set the correct complier to use the -fastsee option in Fortran? This is the error I'm getting:
Mod5.2.0.0: make -f MakeF90_5.2.0.0
gfortran -fastsse -c src_5.2.0.0/Modtrn.f -o ...
0
votes
3answers
953 views
Functional Arguments in FORTRAN
Problem
I am trying to have a function be the argument to another function however I keep getting the error:
Error: Internal procedure 'polytrope' is not allowed as an actual argument at (1)
Code
...
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 ...
2
votes
4answers
1k views
Force explicit variable declaration with gfortran
I am linking some fortran code (f90) from matlab using mex and I am having matlab freeze occasionally.
In the past, I had freezing happening due to mismatch between data types (say integer*4 vs ...
1
vote
1answer
2k views
Fortran pointer functions: why does this code's behavior depend on the order of function calls?
Context
The toy Fortran code posted below calls two pointer functions. That is, both functions return a pointer. In fact, they're both array pointers. They both attempt to do the same thing, which ...
