The standardized successor to FORTRAN 77, released as an ISO standard in 1991 and an ANSI Standard in 1992.
1
vote
1answer
73 views
How to execute a subroutine whose name is just known in runtime, in Fortran 90?
Suppose I have a program in Fortran with various subroutines, I don't know a priori all the subroutines, and an user supplies the name of one of them via command-line, just as follows:
program ...
0
votes
0answers
106 views
fortran pgi compile error “constant expression of wrong data type”
I have a large software program written in Fortran that I'm trying to compile. I get the error:
PGF90-S-0091-Constant expression of wrong data type (main.f90: 476)
PGF90-S-0091-Constant expression ...
0
votes
0answers
51 views
Which toolchain to use for a photran program that calls C/C++ functions?
I have a Fortran90/Fortran2003 project which calls some c++ functions (legacy code). I use Photran 8 in Eclipse Juno. Eclipse underlines standard c++ functions (like std::min, std::cout), but they ...
1
vote
1answer
157 views
fortran erroneously calls a subroutine
I have some Fortran 90 code that I've been using for finite element computations. Lately, I've been trying to improve how it solves block linear systems. Before, I had a subroutine amux used for ...
0
votes
1answer
159 views
sqrt function fortran 90 error
I am trying to handle sqrt but somehow I cannot understand why when compiling this program, there goes a segmentation fault error. I have detected that it is because of the sqrt. But how can I manage ...
0
votes
0answers
37 views
ifort parallelization
I have a piece of code and I do not understand iforts message that it cant be parallelized. First, my code:
subroutine getPolarization(dcv, nk, dk, k, p_pump_k, problemDimension, P_pump_t)
use ...
0
votes
1answer
181 views
remove repeated elements on an 2D array in fortran 90
I would like to know whether it is possible to have a function that erases all of the 2D repeated nodes from an array, i.e.:
//This next sentence is a redundant sentence//
A(xy,1:2)
A(xy,1) = ...
3
votes
1answer
146 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 ...
1
vote
3answers
206 views
METIS seg faults when run from Fortran
I'm trying to use the METIS library for mesh partitioning as part of a Fortran program I've written for finite element computations. METIS is written in C but it's supposed to work just fine with ...
0
votes
0answers
53 views
Use character string name for folder and write a file inside it in Fortran
How do I create a file under a folder with named with character string?
Here's a part of my code?
use ifport
logical(4) result1
character directname*15
...
...
...
...
0
votes
0answers
49 views
Unexpected behavior on running fortran executable from python script
I just started using Python and encountered something I really don't understand. I used subprocess module to call other external python and fortran executables. One of this doesn't work as expected. ...
0
votes
1answer
88 views
Infinite roof in Fortran
This is my code in Fortran 90
program final
implicit none
real, dimension(421,422) :: a
real :: temp,factor
real, dimension (421) :: soln
integer :: i, rmax, pivot, row,n, O,P,COL,k,a_j,n2,a_i,t
...
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 ...
2
votes
1answer
134 views
Floating point error in system of 4 equations using Gaussian Elimination in Fortran 90
This program is returning a "floating point error: overflow" with the following temperature values:
170
225
275
330
390
445
500
555
610
670
725
775
830
1100
1390
1670
...
3
votes
1answer
125 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 ...
2
votes
1answer
98 views
Executing a Fortran subprocess in Python with arguments
I've had success using the subprocess module in the past, however, I've struggled passing a Fortran executable an argument.
It works on the command-line: .\IMT.EXE path\to\file just fine. But when I ...
0
votes
0answers
30 views
In general, why would the timing of the same code with MPI change?
I have a serial code that I have parallelize it using MPI in FORTRAN. Without changing the test input, the timing change from one run to the other.
Say run 1 t = 0.75sec
run 2: t = 0.32 sec
Again ...
0
votes
1answer
138 views
Stacked MPI derived data types in fortran
MPI2 allows us to create derived data types and send them by writing
call mpi_type_create_indexed_block(size,1,dspl_send,rtype,DerType,ierr)
call mpi_send(data,1,DerType,jRank,20,comm,ierr)
By ...
-1
votes
1answer
52 views
Fortran- about command <<write>>
i'm not very good with programming but i'm learning how to write a code in fortran with parallel studio XE 2011 with VS2010. So, my question is how can i use the backslash ( \ ) with command <> to ...
0
votes
1answer
93 views
fortran90 reading array with real numbers
I have a list of real data in a file. The real data looks like this..
25.935
25.550
24.274
29.936
23.122
27.360
28.154
24.320
28.613
27.601
29.948
29.367
I write fortran90 code to read ...
0
votes
1answer
76 views
mpi alters a variable it shouldn't
I have some Fortran code that I'm parallelizing with MPI which is doing truly bizarre things. First, there's a variable nstartg that I broadcast from the boss process to all the workers:
call ...
1
vote
1answer
44 views
Error message when trying to create a module in fortran 90
I am trying to create a module for a fortran 90 program. The file is called epath.f90. When I try to create the file epath.mod by running an object-only compile on the file by way of the commad f95 -c ...
4
votes
1answer
188 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 ...
5
votes
1answer
922 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 ...
0
votes
1answer
69 views
Alternating split-operator methods
The following is from a 1D hydro code (using the Hamiltonian method with Strang splitting for evolving the variables p & q) that I whipped up this weekend for some introductory research work
...
0
votes
5answers
174 views
Calling a subroutine multiple times with different function as argument each time
I'm enough of a novice to not know the terminology, so I can't search the Web for the answer to this.
More than once, in programming, I've wanted to do something like this.
A and B are subroutines, ...
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 ...
1
vote
2answers
460 views
reading unformatted fortran file in matlab - which precision?
I have just written out a file:
real*8 :: vol_cel
real*8, dimension(256,256,256) :: dense
[... some operations]
open(unit=8,file=fname,form="unformatted")
...
1
vote
0answers
121 views
Reading file in Fortran-90 written out by Python f.write()
So someone wrote this code which outputs x,y,z positions of some particles.
if rs.contains_block(file+'.hdf5',"POS ",parttype=1):
d1 = rs.read_block(file, "POS ",parttype=1,verbose=False)
...
2
votes
1answer
360 views
OpenMP Segmentation fault: 11
When I try to parallelize my program in Fortran90 by OpenMP, I get a segmentation fault error.
!$OMP PARALLEL DO NUM_THREADS(4) &
!$OMP PRIVATE(numstrain, i)
do irep = 1, nrep
...
2
votes
1answer
248 views
Converting arbitrary floating-point string to real in Fortran 95
Are there any easy ways of convertin an arbitrary floating-point string to a real number in fortran? Think of something like strtod? The problem with READ statement is that all floating-point formats ...
0
votes
1answer
307 views
fortran 90 Change array type/cast
Is it possible change the type (or copy) a double type array into a char?
My objective is mix accurate data with strings, and then write to .txt file.
With your tips, I reach this code:
Program ...
0
votes
0answers
169 views
Doxygen and Fortran with KIND parameters
I'm using Doxygen to document a Fortran code and I have variables declared such as:
REAL(KIND=8), PARAMETER :: myParam = 1.0_8
but Doxygen gets confused and seems to think REAL is a function and ...
1
vote
1answer
94 views
Module calling an external procedure with implicit interface
The following code, combining module procedures and external procedures:
module module_dummy
implicit none
contains
subroutine foo(a)
real, intent(inout) :: a(:)
call bar(a)
end ...
0
votes
1answer
194 views
Fortran: How to read to an array from a file
I'm trying to read integers from a file to an array. But I get an error when I run the program.
PROGRAM MINTEM
INTEGER TEMP(4,7), I, J, MINIMUM, CURRENT
OPEN(UNIT=1, FILE='temps.dat')
READ (1,*) ...
0
votes
0answers
249 views
Fortran 90 - Inverse Symmetric Band Matrix
I am currently learning Fortran and so far, I have been doing a great job and I thank the stackoverflow community for helping me with my progress.
I have a question regarding symmetric band matrices. ...
2
votes
1answer
95 views
Fortran Derived Type:
I am confused by the following example:
TYPE :: car
real :: x, u ! position, velocity
real :: y, v !
real :: z, w !
real,dimension(3) :: uvw_0 ! initial uvw
END TYPE
TYPE ...
1
vote
3answers
272 views
Fortran 'call' statement: what can it actually call?
I've inherited about 400 lines of very weirdly written Fortran 77 code, and I'm trying to analyze it step by step to make it clear in my mind.
Anyway, I have an header-like file (actually a .h, but ...
0
votes
2answers
120 views
Will FORTRAN90 code always work with a FORTRAN95 compiler?
We have a complex program written in FORTRAN 90, I've only been able to find FORTRAN 95 compilers. Unfortunately I have limited access and experience but need immediate insight on the problem.
Will ...
2
votes
3answers
261 views
Can MPI gather, reduce, send, or receive derived types in Fortran 90?
I want to copy a derived type xyzBuffer from processor 1 to xyz of processor 0. I attempted MPI_GATHER with:
call MPI_GATHERV(xyzBuffer,1,inewtype,xyz,1, dispGather,inewtype,0,icomm,ierr)
But ...
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
467 views
How to read a matrix and write certain values to a new file in fortran90
I am doing a chemistry research project and presently have a 378 x 378 matrix of zeros and ones in a file called Connectivity-M.txt. I am trying to write a simple program to read down each column of ...
1
vote
0answers
189 views
FORTRAN midpoint and simpsons rule error using discrete data points [closed]
I am given Cp values along the top surface and bottom surface of an airfoil with respect to the chord. I have 400 data points(x/c, Cp) from the top surface and 400 for the bottom surface. I have been ...
2
votes
1answer
133 views
How can I explain object-oriented programming to someone who's only coded in Fortran 77? [closed]
My mother did her college thesis in Fortran, and now (over a decade later) needs to learn c++ for fluids simulations. She is able to understand all of the procedural programming, but no matter how ...
1
vote
1answer
187 views
seg fault in MPI with dynamic memory allocation
I'm parallelizing a Fortran 90 program using MPI and I get some truly bizarre behavior. I have an array ia of length nn+1, which I'm sending in chunks from process 0 to processes 1,...,ntasks-1. Each ...
1
vote
1answer
371 views
MPI Fortran code error on a single PC
Recently I was trying to compile and run my mpi code on a single machine (Ubuntu 12.04 - 64 bits core i7 2670 QM) I installed mpich2 version 1.2 using the following configuration:
./configure ...
2
votes
2answers
115 views
Makefile - compiling back and forth
Following is the directory structure of my project:
expt-main
---------
Makefile_main
/ \
...
1
vote
1answer
80 views
ctags alternatives for fortran90/95
I have used ctags for fortran 90/95 but i am looking for something better, something that can tell me all references of a tag.
I just used understand for fortran and liked it but its too expensive. I ...
0
votes
3answers
434 views
Fortran 90 - segmentation fault
I am making a program that converts a decimal integer into its binary representation. Here is my code:
program test
implicit none
integer, dimension(:), allocatable :: binary
integer :: decimalnum, ...
1
vote
1answer
119 views
Fortran 90 - Compute extremely large values
I am currently learning Fortran 90 and have been experimenting with the kind and selected_real_kind parameters for variables. In my experimentation, I have found out that variables can only contain ...