|
[Sponsors] |
promote real to double precisio with VISUALfortran |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
March 11, 2008, 12:36 |
promote real to double precisio with VISUALfortran
|
#1 |
Guest
Posts: n/a
|
Hallo I have a code for shallow water equations written in Fortran. there is the option "promote real to double precision" with visual fortran?Because my variables are declared as:
REAL NAME1,NAME2,NAME3 and I want just to compile sometimes in single and simetimes in double precision just changing the option without change the code thanks so much Alberto |
|
March 12, 2008, 03:19 |
Re: promote real to double precisio with VISUALfor
|
#2 |
Guest
Posts: n/a
|
u can use this method !
parameter (n=4) real(n) name1, ..... if you use modul for data base of variables it will be very easy. it needs to chaing only in main module of your data base module var_database parameter (n=4) 'or n=8' real(n) name1, ..... real(n) name3, ..... end module ... . . . subroutine sub1 use var_database end sub1 |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Continuing User Defined Real Gas Model issues | aeroman | FLUENT | 6 | April 8, 2016 04:34 |
New densitybased solver AeroFoam | giulio_romanelli | OpenFOAM Running, Solving & CFD | 48 | January 15, 2016 09:20 |
Parallel User Defined Real Gas Model | aeroman | FLUENT | 4 | July 1, 2015 07:09 |
Missing math.h header | Travis | FLUENT | 4 | January 15, 2009 12:48 |
REAL GAS UDF | brian | FLUENT | 6 | September 11, 2006 09:23 |