The standardized successor to FORTRAN 77, released as an ISO standard in 1991 and an ANSI Standard in 1992.
0
votes
2answers
496 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
196 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
136 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
201 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
397 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
119 views
Makefile - compiling back and forth
Following is the directory structure of my project:
expt-main
---------
Makefile_main
/ \
...
1
vote
1answer
83 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
485 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
124 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 ...
2
votes
1answer
636 views
Debugging fortran code in Eclipse with Photran and GDB debugger: missing symbols
I have a program, written in fortran90, previously successfully compiled on a compaq compiler and working, that I'm now trying to compile with gfortran. I can compile the code to an .exe and run it. ...
0
votes
1answer
51 views
fortran90: printing integer array in different structure
I've an integer array
int(4) :: idate ! 1979 March 1st 00hrs
write(*,*)idate ! prints ' 0 3 1 1979'
I want idate to be saved in a different variable (integer/integer array ...
0
votes
2answers
349 views
Fortran basics: read file
I have 2 questions in FORTRAN (I'm new to this language).
I have the following code lines:
OPEN(UNIT=79, FILE='sampling.txt', FORM='FORMATTED')
READ(79,*) NP1,NP2,IW
NP1,NP2,IW are declared ...
0
votes
1answer
71 views
fortran basic help 'd' operator [duplicate]
Possible Duplicate:
postfix 'd+0' in Fortran real literal expressions
I have this code line in Fortran 90:
OVERN2 = 1.d+0/DBLE(FLOAT(NMODE2))
NMODE2 is an integer, OVERN2 is a ...
1
vote
1answer
469 views
f2py: Specifying real precision in fortran when interfacing with python?
I am playing around with f2py. I'm a bit confused about numpy intrinsic types vs. fortran 90 types. It seems like I can only use single precision reals in fortran 90, when interacting with python. Let ...
0
votes
1answer
82 views
debugging myprog.f90 using gdb: break line errs “No line in file”
I am using gdb to debug a fortran90 program, myprog.f90, that uses some modules, say mod1 and mod2.
I launch gdb...
$ gdb ./program
and try to set a line break...
(gdb) break 80
but I receive the ...
1
vote
2answers
279 views
C calling Fortran subroutine
I am new to the site, and this looks like it may be a place to get some tips and help if any.
I am learning about "C calling Fortran subroutine", I have knowledge with C but not too much with ...
0
votes
1answer
106 views
Vectorize a call to a subroutine
I have a program where the call to subroutine foo doesn't get vectorized even though IVDEP pragma is used.
vec-report3 doesn't give me any reason on why the call is not vectorized. Is it because of ...
1
vote
1answer
202 views
row reading and editing in Fortran 90
I am new to Fortran, I am trying to write a program to read a .txt file in which i have 24480 rows and ~ 6000 columns.
In each row (as individuals) i have genotypes indicated as 1 and 2, which if, for ...
-1
votes
1answer
98 views
Call R script from Fortran
I am doing an heavy weather simulation in Fortran 90. I would like to call a script in R in order to perform some complicated data analysis. The only way that i found is to write inside a file the ...
0
votes
1answer
356 views
fortran 90 simple way to display time taken
I have recently started learning Fortran 90 for the fun of it, and I want to know if there is any simple way to display the time taken to execute my code. It is just simple loop that counts to a ...
0
votes
1answer
177 views
fortran undefined reference to popcnt_
i am trying to compile a fortran 90 program which has a call to POPCNT as follows:
...
print *, popcnt(127)
...
by compiling it as follows:
gfortran prog.f90
it gives me the following:
...
1
vote
1answer
226 views
Fortran 90: allocatable array cannot appear in “EQUIVALENCE”
I have a large array, the array is so large that I have to use "allocatable" and allocate in fortran. for example,
complex(8),allocatalbe :: E0(:, :, :)
allocate(E0(1000,1000,1000))
I need in our ...
3
votes
1answer
1k views
Fortran 90/95 library for sparse matrices?
I am looking for a library for dealing with sparse matrices in fortran 90/95. I only need very basic operations like matrix-vector multiplication. What do you suggest I use?
I have searched around ...
0
votes
1answer
2k views
The mysterious nature of Fortran 90 modules
Fortran 90 modules are evanescent creatures. I was using a (singular) module for a while with some success (compiling using Intel Visual Fortran and Visual Studio 2010). Then I wrote another module ...
0
votes
2answers
218 views
saving program inputs to a module for “global” use
I've written a program in Fortran 90 that reads hundreds on inputs from a text file and performs many different, sequential operations on them.
I don't want to keep passing these hundreds of values ...
1
vote
2answers
81 views
How can I force an array overflow?
I have a very odd problem related to the Portland Group FORTRAN 90 compiler. I am trying to run a code that relies on array overflow to work properly. I did not write this code! The originators had to ...
0
votes
0answers
53 views
Analyze mid-large Fortran90 codebase
I must analyze and modify a FORTRAN program which has 1200+ lines. Although I have been reading the code I couldn't advance almost nothing: its structure seems hard to understand.
What do I need? I ...
1
vote
2answers
238 views
FORTRAN - Reduce function call overhead
I have a fortran code like this:
file1.f90
program myprog
use func1mod
do i=1,N
call subroutine1
enddo
subroutine subroutine1
integer*8::var1,var2,var3,...
do ...
5
votes
1answer
158 views
A Makefile Puzzle: Multiple Programming Languages
I have a simple test Makefile:
hello: hello.o
.SUFFIXES: .c .f90 .o
.f90.o:
pgf90 -c -o $@ $<
.c.o:
cc -c -o $@ $<
You don't have to tell me that it having a foo.c and a foo.f90 in ...
0
votes
1answer
390 views
fortran, read command
I have a .dat file that I want to read with a program in Fortran 90. The data file contains only one very long column of complex numbers. My problem is that I want to read only one part of the column, ...
0
votes
0answers
122 views
MPI and memory test
I have written a program in Fortran 90 and MPI. I tried to run this program on 2 different machines. In one works fine but on the other, Intel Xeon X5650, 12 cores (6x2), my program is stopped by ...
1
vote
1answer
70 views
Need help for Diploma thesis: calculating preferred direction of gradient vector
i am currently writing my Diploma thesis in Fortran 90. At a certain stage of my code, i simply want to calculate an Integer (should give a direction in a cartesian grid of mesh cells as a result).
...
1
vote
4answers
3k views
Write data to file in columns (Fortran)
I need to write some data to file in Fortran 90. How should I use WRITE (*,*) input to have the values grouped in columns? WRITE always puts a new line after each call, that's the problem.
code ...
0
votes
2answers
128 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
...
2
votes
2answers
193 views
send mpi message from a c++ code to fortran 90 code
I am try to see if I can send the contents of an array in a c++ code to a fortran 90 code. I'm using openmpi 1.4.3 built using intel 11.1.072 compilers. They are installed on Linux version ...
3
votes
1answer
237 views
vectorize a loop which accesses non-consecutive memory locations
I have a loop of this structure
Reference : Maxwell Code Example
do z=1,zend
do y=1,yend
do x=1,xend
k=arr(x,y,z)
do while(k.ne.0)
ix=fooX(k)
...
2
votes
1answer
169 views
Is it possible to use a pointer in type constructor in fortran?
In some Fortran 95 code, I have a type with a pointer field. I want to declare a module variable of type(foo) which is initialized at compile-time. Something like this:
module foo_module
implicit ...
0
votes
1answer
111 views
FORTRAN program produces blank output. Help me
I'm writing a code to take an input file and make changes to it line by line(ROWS). I am using some delimiters like '@' and '#' to separate the lines and do different changes to each category of ...
0
votes
1answer
210 views
Fortran allocatable array lifetime
Say I have the below code:
program test
call foo
call foo
contains
subroutine foo
integer(8),dimension(:),allocatable:: var1
allocate(var1(10))
...
return
end subroutine foo
...
5
votes
2answers
675 views
Deep array copy in Fortran
I need a deep copy of a (real) array in Fortran (90), but am not sure exactly how to get one, since I do not completely understand how references work. Intuitively, I would expect this to get me ...
1
vote
1answer
254 views
FORTRAN how to skip a line while reading lines in a DO loop?
I'm trying to read a file line by line using a DO and read to manipulate individual lines. However, I'm trying to skip a line wherever I see something I don't want.
Here's what I have so far:
DO ...
6
votes
1answer
550 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
150 views
Fortran subroutine fails on return
I have a Fortran numerical code that calls a subroutine from an external module. This code has been running fine for me until I tried to compile and run on a different machine. On the new machine, ...
0
votes
3answers
99 views
how to execute multiple f90 codes simultaneously correctly?
I am trying like this, but sure it is improvable, because the bash can't finish for some reason...
#!/bash/bin
cd directory
gfortran -O3 code1.f90 -o a1.out
gfortran -O3 code2.f90 -o a2.out
...
0
votes
0answers
119 views
M6201 runtime error (DOMAIN)
I'm new to this forum abut think I have a problem that's germane.
I have a rather large F77 program that I have carefully converted to F90. To further move it to F90, I am tediously removing each of ...
1
vote
2answers
154 views
Implementation details of MPI collective operations on a multi core machine
In MPI, each rank has a unique address space and communication between them happens via message passing. I want to know how MPI works in a multicore machine which has a shared memory. If the ranks are ...
1
vote
2answers
421 views
How can I efficiently transpose array and assign to an array with a different type
Consider the following:
program main
integer, parameter :: n=10, m=20
integer ints(n,m)
real floats(m,n)
!... initialize ints
! ...
floats=transpose(ints)
!... do stuff with floats
end
looking ...
0
votes
1answer
104 views
How to BREAK the program with a message when some condition occurs
I am trying to find a way to put a breaking order when some condition occurs in one subroutine of my f90 program.
Is it possible to have any ideas from it? the code scheme looks like this:
/
...
1
vote
1answer
174 views
partition a 2D array row-wise and use allgather?
I have a loop that look like this:
do j=1,100
do i=1,1000
combined_array(i,j)=combined_array(i,j-1)
call foo(combined_array(i,j))
enddo
enddo
subroutine foo(x)
x= ...
1
vote
2answers
271 views
partition a 2D array column-wise and use allgather
I have a fortran MPI code in which a compute intensive function is invoked on every element of a 2D array. I'm trying to split the tasks among the ranks. For example if there are 30 columns and 10 ...