Tagged Questions
7
votes
4answers
8k views
How do you USE Fortran 90 module data
Let's say you have a Fortran 90 module containing lots of variables, functions and subroutines. In your USE statement, which convention do you follow:
explicitly declare which ...
4
votes
3answers
75 views
Correct use of modules, subroutines and functions in fortran
I've recently learnt about the interface block when adding a function to my FORTRAN programme. Everything works nice and neatly, but now I want to add a second function into the interface block.
Here ...
3
votes
1answer
81 views
Calling function in same module in Fortran90
I am new to Fortran90 and I haven't found an answer to a problem I have.
I have a module written in Fortran with the some functions inside a module.
Stripped down version:
module vdiStringFunctions
...
2
votes
1answer
62 views
Format statements in Fortran modules
I have a module with a number of subroutines that all use the same set of formats for output.
Right now, I have to declare the formats in every subroutine. Is there a way to declare them in the ...
1
vote
1answer
2k views
Fortran 90 compiling issue: undefined reference to <modulename>
I'm having trouble trying to compile a simple fortran program which uses a module in the same directory.
I have 2 files: test1.f90 which contains the program and modtest.f90 which contains the module.
...