Changeset 1461 for trunk/libIGCM/libIGCM_sys/libIGCM_sys_irene.ksh
- Timestamp:
- 06/26/18 19:38:38 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libIGCM/libIGCM_sys/libIGCM_sys_irene.ksh
r1459 r1461 105 105 fi 106 106 107 # Use CMIP6 storage space when using project id gch0316108 [[ "X${PROJECT}" = "Xgch0316" && ! $(module list --terse 2>&1 | grep dfldatadir/gencmip6) ]] && module switch dfldatadir dfldatadir/gencmip6109 110 107 # FYI 111 108 [ ! X${TaskType} = Xchecking ] && IGCM_debug_Print 1 "List of loaded modules:" … … 202 199 #D-function IGCM_sys_defineArchives 203 200 #D-* Purpose: 201 #D-* Load dfldatadir module : According to project used for submission (default) or set in config.card (optional) 204 202 #D-* Define ARCHIVE : Dedicated to large files 205 203 #D-* Define STORAGE : Dedicated to small/medium files … … 212 210 function IGCM_sys_defineArchives { 213 211 IGCM_debug_PushStack "IGCM_sys_defineArchives" 212 213 # Load dfldatadir depending on the project used for submission (default) or set in config.card (optional) 214 if [ X${config_UserChoices_DataProject} = X ] || [ X${config_UserChoices_DataProject} = DEFAULT ]; then 215 # Default option: Change the dfldatadir according to the project used for submission 216 # The variable DataProject in section UserChoices in config.card is not set or is set to DEFAULT 217 module switch dfldatadir dfldatadir/${PROJECT} 218 IGCM_debug_Print 1 "Load dfldatadir for project ${PROJECT}" 219 else 220 # Use the project set by the variable DataProject in section UserChoices in config.card 221 module switch dfldatadir dfldatadir/${config_UserChoices_DataProject} 222 IGCM_debug_Print 1 "Load dfldatadir for project ${config_UserChoices_DataProject}" 223 fi 214 224 215 225 if [ ! X${config_UserChoices_ARCHIVE} = X ]; then
Note: See TracChangeset
for help on using the changeset viewer.