Changeset 6727
- Timestamp:
- 01/18/24 17:30:27 (10 months ago)
- Location:
- CONFIG/UNIFORM/v7/IPSLCM7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
CONFIG/UNIFORM/v7/IPSLCM7/compile_ipslcm7.sh
r6725 r6727 579 579 580 580 ## 2.10 Compile LMDZ for regular latlon configuration 581 if [ $regular_latlon = y ] ; then581 if [ $regular_latlon = y ] && [ $complmdz = y ] ; then 582 582 583 583 cd $modipsl/modeles/LMDZ -
CONFIG/UNIFORM/v7/IPSLCM7/define_config.sh
r6677 r6727 38 38 fi 39 39 40 if [ -d ../../modeles/LMDZ ] ; then 41 complmdz=y 42 else 43 complmdz=n 44 fi 45 40 46 41 47 … … 46 52 elif [ $subconfig == IPSLCM ] || [ $subconfig == IPSLCM-ico ] ; then 47 53 # Full coupled model currently without INCA 48 if [ $compdyna == n ] || [ $compoasis == n ] || [ $compnemo == n ] ; then54 if [ $compdyna == n ] || [ $compoasis == n ] || [ $compnemo == n ] || [ $complmdz == n ] ; then 49 55 echo ; echo It is not possible to compile IPSLCM. 50 56 echo Source code is missing … … 56 62 elif [ $subconfig == IPSLCM-reg ] ; then 57 63 # Coupled model without DYNAMICO and INCA 58 if [ $compoasis == n ] || [ $compnemo == n ] ; then64 if [ $compoasis == n ] || [ $compnemo == n ] || [ $complmdz == n ] ; then 59 65 echo ; echo It is not possible to compile IPSLCM-reg. 60 66 echo Source code is missing … … 66 72 fi 67 73 elif [ $subconfig == ICOLMDZORINCA ] ; then 68 if [ $compinca == n ] || [ $compdyna == n ] ; then74 if [ $compinca == n ] || [ $compdyna == n ] || [ $complmdz == n ] ; then 69 75 echo ; echo It is not possible to compile ICOLMDZORINCA. 70 76 echo INCA or DYNAMICO source code is missing … … 75 81 fi 76 82 elif [ $subconfig == ICOLMDZOR ] ; then 77 if [ $compdyna == n ] ; then83 if [ $compdyna == n ] || [ $complmdz == n ] ; then 78 84 echo ; echo It is not possible to compile ICOLMDZOR 79 85 echo DYNAMICO source code is missing … … 84 90 fi 85 91 elif [ $subconfig == LMDZORINCA ] ; then 86 if [ $compinca == n ] ; then92 if [ $compinca == n ] || [ $complmdz == n ] ; then 87 93 echo ; echo It is not possible to compile LMDZORINCA. 88 echo INCA source code is missing94 echo INCA or LMDZ source code is missing 89 95 exit 90 96 else … … 94 100 fi 95 101 elif [ $subconfig == LMDZOR ] ; then 96 # We always suppose that LMDZ and ORCHIDEE are extracted. No check needs to be done. 97 regular_latlon=y 98 echo Compilation of regular LMDZOR configuration for grid $resol_atm will be done 99 compnemo=n compoasis=n compdyna=n compinca=n complmdz=y comporch=y compxios=y 102 if [ $complmdz == n ] ; then 103 echo ; echo It is not possible to compile LMDZOR. 104 echo LMDZ source code is missing 105 exit 106 else 107 regular_latlon=y 108 echo Compilation of regular LMDZOR configuration for grid $resol_atm will be done 109 compnemo=n compoasis=n compdyna=n compinca=n complmdz=y comporch=y compxios=y 110 fi 111 elif [ $subconfig == ORCHIDEE_OL ] ; then 112 # We always suppose ORCHIDEE is extracted. No check needs to be done. 113 regular_latlon=n 114 echo Compilation of ORCHIDEE offline configuration will be done 115 compnemo=n compoasis=n compdyna=n compinca=n complmdz=n comporch=y compxios=y 100 116 else 101 117 echo ; echo "The configuration $subconfig is not available" … … 105 121 exit 106 122 fi 107 echo compnemo=$compnemo compoasis=$compoasis compdyna=$compdyna compinca=$compinca complmdz= ycomporch=y compxios=y123 echo compnemo=$compnemo compoasis=$compoasis compdyna=$compdyna compinca=$compinca complmdz=$complmdz comporch=y compxios=y 108 124 echo ; 109 125
Note: See TracChangeset
for help on using the changeset viewer.