- Timestamp:
- Dec 20, 2011, 12:00:51 PM (13 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r471 r484 571 571 - Outside su_gases.F90, very few modifications to the code : the new module "gases_h.F90" simply replaces the old common "gases.h" ! 572 572 - Compiles fine. Tested with debugging options through pgdbg. Runs fine. Exact same results in Early Mars test case. 573 574 == 20/12/2011 == JL + AS 575 - Allocatable gastype in sugas_corrk instead of hardcoded (it was a problem for more than 4 gases!) -
trunk/LMDZ.GENERIC/libf/phystd/radcommon_h.F90
r470 r484 62 62 ! gIR : mean assymetry factor 63 63 64 65 character(len=3) :: gastype(3)66 64 67 65 REAL*8 BWNI(L_NSPECTI+1), WNOI(L_NSPECTI), DWNI(L_NSPECTI), WAVEI(L_NSPECTI) -
trunk/LMDZ.GENERIC/libf/phystd/setspv.F90
r374 r484 25 25 use radinc_h, only: L_NSPECTV, corrkdir, banddir 26 26 use radcommon_h, only: BWNV,BLAMV,WNOV,DWNV,WAVEV, & 27 STELLARF,TAURAY ,gastype27 STELLARF,TAURAY 28 28 use datafile_mod, only: datadir 29 29 -
trunk/LMDZ.GENERIC/libf/phystd/sugas_corrk.F90
r471 r484 22 22 use radcommon_h, only : tgasref,tgasmin,tgasmax 23 23 use radcommon_h, only : gasv,gasi,FZEROI,FZEROV,gweight 24 use radcommon_h, only : wrefvar ,gastype24 use radcommon_h, only : wrefvar 25 25 use datafile_mod, only: datadir 26 26 use gases_h … … 41 41 !! ALLOCATABLE ARRAYS -- AS 12/2011 42 42 REAL*8, DIMENSION(:,:,:,:,:), ALLOCATABLE :: gasi8, gasv8 43 character*3,allocatable,DIMENSION(:) :: gastype ! for check with gnom 43 44 44 45 real*8 x, xi(4), yi(4), ans, p … … 97 98 endif 98 99 99 100 IF ( .NOT. ALLOCATED( gastype ) ) ALLOCATE( gastype( ngas ) ) 100 101 do n=1,ngas 101 102 read(111,*) gastype(n) … … 536 537 IF( ALLOCATED( gasv8 ) ) DEALLOCATE( gasv8 ) 537 538 IF( ALLOCATED( pgasref ) ) DEALLOCATE( pgasref ) 538 539 IF( ALLOCATED( gastype ) ) DEALLOCATE( gastype ) 539 540 540 541 return
Note: See TracChangeset
for help on using the changeset viewer.