Changeset 3828 for trunk/LMDZ.VENUS
- Timestamp:
- Jul 3, 2025, 3:50:22 PM (5 weeks ago)
- Location:
- trunk/LMDZ.VENUS/libf/phyvenus
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.VENUS/libf/phyvenus/euvheat.F90
r2836 r3828 5 5 use dimphy 6 6 use conc, only: rnew, cpnew 7 use mmol_mod 7 8 8 9 IMPLICIT NONE … … 33 34 #include "YOMCST.h" 34 35 #include "clesphys.h" 35 #include "mmol.h"36 !#include "mmol.h" 36 37 !----------------------------------------------------------------------- 37 38 ! Input/Output -
trunk/LMDZ.VENUS/libf/phyvenus/jthermcalc_e107.F
r2836 r3828 1126 1126 use dimphy 1127 1127 use param_v4_h 1128 use mmol_mod 1128 1129 implicit none 1129 1130 1130 1131 c common variables and constants 1131 1132 #include "clesphys.h" 1132 #include "mmol.h" 1133 c#include "mmol.h" 1134 1133 1135 1134 1136 c local parameters and variables -
trunk/LMDZ.VENUS/libf/phyvenus/mmol_mod.F90
r3827 r3828 1 2 1 2 MODULE mmol_mod 3 IMPLICIT NONE 4 PUBLIC 3 5 4 real,parameter :: mmolo=16., mmolco=28., mmolco2=44., mmoln2=28. ! molar mass g/mol 5 real,parameter :: mmolh2=2., mmolh2o2=34., mmolh2o=18., mmolo2=32. 6 real,parameter :: mmolo3=48., mmolno=30., mmolno2=46., mmoln=14. 7 real,parameter :: mmolh=1. 6 REAL, PARAMETER :: mmolo = 16.0 7 REAL, PARAMETER :: mmolco = 28.0 8 REAL, PARAMETER :: mmolco2 = 44.0 9 REAL, PARAMETER :: mmoln2 = 28.0 10 REAL, PARAMETER :: mmolh2 = 2.0 11 REAL, PARAMETER :: mmolh2o2= 34.0 12 REAL, PARAMETER :: mmolh2o = 18.0 13 REAL, PARAMETER :: mmolo2 = 32.0 14 REAL, PARAMETER :: mmolo3 = 48.0 15 REAL, PARAMETER :: mmolno = 30.0 16 REAL, PARAMETER :: mmolno2 = 46.0 17 REAL, PARAMETER :: mmoln = 14.0 18 REAL, PARAMETER :: mmolh = 1.0 19 20 END MODULE mmol_mod -
trunk/LMDZ.VENUS/libf/phyvenus/nirco2abs.F
r2580 r3828 5 5 use geometry_mod, only: longitude_deg, latitude_deg 6 6 use chemparam_mod, only: i_co2, i_o 7 use mmol_mod 7 8 c use compo_hedin83_mod2 8 9 … … 60 61 #include "nirdata.h" 61 62 c#include "tracer.h" 62 #include "mmol.h" 63 c#include "mmol.h" 64 63 65 c----------------------------------------------------------------------- 64 66 c Input/Output
Note: See TracChangeset
for help on using the changeset viewer.