source: tags/libIGCM_v1/AA_monitoring @ 293

Last change on this file since 293 was 2, checked in by mmaipsl, 16 years ago

MM: import first trunk version of libIGCM.

File size: 3.8 KB
Line 
1#-Q- platine #!/usr/bin/ksh
2#-Q- platine ##################
3#-Q- platine ## PLATINE   CEA ##
4#-Q- platine ##################
5#-Q- platine #BSUB -J MONITORING             # Nom du job
6#-Q- platine #BSUB -N                        # message a la fin du job
7#-Q- platine #BSUB -n 1                      # reservation des processeurs pour le job
8#-Q- platine #BSUB -W 1:00                   # Limite temps
9#-Q- sx8brodie #######################
10#-Q- sx8brodie ## SX8BRODIE   IDRIS ##
11#-Q- sx8brodie #######################
12#-Q- sx8brodie #QSUB -r MONITORING           # Nom du job
13#-Q- sx8brodie #QSUB -lT 1:00:00             # limite en temps total
14#-Q- sx8brodie #QSUB -eo                     # rassemble standard error et output
15#-Q- sx8brodie #QSUB -J m
16#-Q- sx8brodie #QSUB -l mpp_p=4
17#-Q- sx8brodie #QSUB -s /bin/ksh             # shell du job
18#-Q- sx8mercure #!/bin/ksh
19#-Q- sx8mercure ######################
20#-Q- sx8mercure ## SX8MERCURE   CEA ##
21#-Q- sx8mercure ######################
22#-Q- sx8mercure #PBS -N  MONITORING          # Nom du job
23#-Q- sx8mercure #PBS -j o                    # regroupement des stdout et stderr
24#-Q- sx8mercure #PBS -S /usr/bin/ksh         # shell de soumission
25#-Q- sx8mercure #PBS -l memsz_job=1gb        # Limite memoire a 1 Go
26#-Q- sx8mercure #PBS -l cputim_job=1:00:00   # Limite temps a 2 heures
27#-Q- sx8mercure #PBS -q scalaire
28#-Q- default #!/bin/ksh
29#-Q- default ##################
30#-Q- default ## DEFAULT HOST ##
31#-Q- default ##################
32
33# $Date: 2008/03/25 10:13:23 $
34# $Name: libIGCM_v1 $
35# $Revision: 1.9 $
36# IPSL (2006)
37#  This software is governed by the CeCILL licence see libIGCM/libIGCM_CeCILL.LIC
38
39date
40
41#-Q- sx8brodie export OMP_NUM_THREADS=1
42
43######################################################################
44
45. ${libIGCM}/libIGCM_debug/libIGCM_debug.ksh ;
46. ${libIGCM}/libIGCM_sys/libIGCM_sys.ksh     ; #IGCM_debug_Check
47. ${libIGCM}/libIGCM_card/libIGCM_card.ksh   ; #IGCM_card_Check
48
49######################################################################
50
51#set -vx
52
53#===========================================
54cd ${RUN_DIR_PATH}
55
56if [ ${StandAlone} = true ] ; then
57    CARD_DIR=${SUBMIT_DIR}
58else
59    CARD_DIR=${RUN_DIR_PATH}/$( basename ${SUBMIT_DIR} )
60    IGCM_sys_Get_Master ${SUBMIT_DIR} ${RUN_DIR_PATH}
61fi
62
63#
64# First of all
65#
66IGCM_card_DefineArrayFromSection       ${CARD_DIR}/config.card UserChoices
67typeset option
68for option in ${config_UserChoices[*]} ; do
69    IGCM_card_DefineVariableFromOption ${CARD_DIR}/config.card UserChoices ${option}
70done
71IGCM_card_DefineArrayFromSection       ${CARD_DIR}/config.card ListOfComponents
72
73R_SAVE=${R_OUT}/${config_UserChoices_TagName}/${config_UserChoices_JobName}
74
75#
76IGCM_sys_Get_Dir ${R_SAVE}/MONITORING ${RUN_DIR_PATH}
77
78# --------------------------------------------
79# Insert your commands between III...III lines
80# and precise produced directories to save
81# IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
82
83for comp in ${config_ListOfComponents[*]} ; do
84    liste_file_monitoring=""
85    IGCM_card_DefineArrayFromOption ${CARD_DIR}/config.card ListOfComponents ${comp}
86    eval compname=\${config_ListOfComponents_${comp}[0]}                > /dev/null 2>&1
87    eval monitoring_file=monitoring01_${compname}_\${RESOL_${comp}}.cfg > /dev/null 2>&1
88    #
89    [ -f ${FER_ATLAS}/${monitoring_file} ] && liste_file_monitoring=$( monitoring01 -q -l2 ${FER_ATLAS}/${monitoring_file} ${R_SAVE}/${comp}/Analyse/TS_MO )
90    #
91    if [ ! "X${liste_file_monitoring}" = X ] ; then
92        IGCM_sys_Get /l liste_file_monitoring ${RUN_DIR_PATH}
93        monitoring01 -q -p ${comp} -t "${config_UserChoices_JobName} monitoring" -o ${RUN_DIR_PATH}/MONITORING ${FER_ATLAS}/${monitoring_file} ${RUN_DIR_PATH}
94    fi
95    #
96done
97
98# IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
99
100# Save files
101IGCM_sys_Put_Dir MONITORING ${R_SAVE}
102
103# Dods copy
104IGCM_sys_Put_Dods MONITORING
105
106exit
Note: See TracBrowser for help on using the repository browser.