Tagged Questions
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 - ...
-3
votes
2answers
418 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
2answers
177 views
Reading a file in Python 2.7, ignoring lines, and allocating memory (re-writing fortran code) [duplicate]
I am very new to programming and am converting a fortran90 code into python 2.7. I have done fairly well with it so far but have hit a difficult spot. I need to write this subroutine in Python but I ...
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 ...
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)
...
1
vote
1answer
429 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 ...
-3
votes
1answer
1k views
Thomas Algorithm in Python and Fortran
Python code:
import math
import numpy
n = input('Enter the dimension')
print 'Matrix size',n
dd = [
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
10,11,12,13,14,15,16,17,18,19,
...
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 ...
