Skip to content
Snippets Groups Projects
Commit 8a4d0fd4 authored by RODIER Quentin's avatar RODIER Quentin
Browse files

Quentin 13/07/2021: minor, abort if CCN_MODES in NAM_PARAM_LIMA is not what expected

parent 18abe882
No related branches found
No related tags found
No related merge requests found
...@@ -149,12 +149,14 @@ IF ( NMOD_CCN .GE. 1 ) THEN ...@@ -149,12 +149,14 @@ IF ( NMOD_CCN .GE. 1 ) THEN
RCCN(:) = (/ 0.01E-6 , 0.05E-6 , 0.008E-6 /) RCCN(:) = (/ 0.01E-6 , 0.05E-6 , 0.008E-6 /)
LOGSIGCCN(:) = (/ 0.788 , 0.993 , 0.916 /) LOGSIGCCN(:) = (/ 0.788 , 0.993 , 0.916 /)
RHOCCN(:) = (/ 1000. , 2200. , 1000. /) RHOCCN(:) = (/ 1000. , 2200. , 1000. /)
CASE DEFAULT CASE ('FREETROP') ! d'après Jaenicke 1993, aerosols troposphere libre, masse volumique typique
! d'après Jaenicke 1993, aerosols troposphere libre, masse volumique typique
RCCN(:) = (/ 0.0035E-6 , 0.125E-6 , 0.26E-6 /) RCCN(:) = (/ 0.0035E-6 , 0.125E-6 , 0.26E-6 /)
LOGSIGCCN(:) = (/ 0.645 , 0.253 , 0.425 /) LOGSIGCCN(:) = (/ 0.645 , 0.253 , 0.425 /)
RHOCCN(:) = (/ 1000. , 1000. , 1000. /) RHOCCN(:) = (/ 1000. , 1000. , 1000. /)
ENDSELECT CASE DEFAULT
call Print_msg(NVERB_FATAL,'GEN','INIT_AEROSOL_PROPERTIES','CCN_MODES must be JUNGFRAU, COPT, CAMS, CAMS_JPP,'// &
'CAMS_ACC, CAMS_AIT, SIRTA, CPS00, MOCAGE or FREETROP')
ENDSELECT
! !
DO I=1, MIN(NMOD_CCN,3) DO I=1, MIN(NMOD_CCN,3)
XR_MEAN_CCN(I) = RCCN(I) XR_MEAN_CCN(I) = RCCN(I)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment