Fortran is a general-purpose, procedural, imperative programming language that is especially suited for numeric computation and scientific computing.
0
votes
0answers
22 views
Type conversion from FORTRAN to C#
I have in F2008
module mod_Blood
use mod_liquid
implicit none
type, public :: typ_BloodComponents
character(len=5) :: name
real(DP):: salt
real(DP):: RBC
end type typ_BloodComponents
...
2
votes
0answers
184 views
Gees - GPL Euler equation solver
As a little helper I recently had to write a code that solves the 1-D Euler equations. As it serves my purpose well I though others could make use of it as well. The homepage of the code can be found ...
3
votes
1answer
250 views
High performance exponential of a skew Hermitian matrix in Fortran 95
I'm new to Fortran, and this is pretty much my first escapade. Below is a function that I wrote which relies on calls to LAPACK. The function is sat in a module with some other functions and works ...