Changeset 955 for trunk/LMDZ.GENERIC


Ignore:
Timestamp:
May 10, 2013, 11:32:50 AM (12 years ago)
Author:
emillour
Message:

Generic GCM:

  • moved the 'makbands' script from "grid" to (more appropriate) "phystd/bands" subdirectory, and consequently adapted the makegcm_* scripts

EM

Location:
trunk/LMDZ.GENERIC
Files:
1 added
5 deleted
6 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/README

    r952 r955  
    933933  (particularly exchanges heat+momentum exchanges between surface and atmosphere)
    934934- added possibility to add an internal heat flux
     935
     936== 10/05/2013 == EM
     937- moved the 'makbands' script from "grid" to (more appropriate) "phystd/bands"
     938  subdirectory, and consequently adapted the makegcm_* scripts
  • trunk/LMDZ.GENERIC/libf/phystd/physiq.F90

    r952 r955  
    529529         ice_update=.false.
    530530         if(sourceevol)then
    531             open(128,file='num_run',form='formatted')
     531            open(128,file='num_run',form='formatted', &
     532                     status="old",iostat=ierr)
     533            if (ierr.ne.0) then
     534              write(*,*) "physiq: Error! No num_run file!"
     535              write(*,*) " (which is needed for sourceevol option)"
     536              stop
     537            endif
    532538            read(128,*) num_run
    533539            close(128)
  • trunk/LMDZ.GENERIC/makegcm_g95

    r671 r955  
    518518    \rm -f $libf/grid/dimensions.h
    519519    \rm -f $libf/grid/bands.h
     520    \rm -f $libf/phy${physique}/bands.h
    520521    \rm -f $libf/phy${physique}/scatterers.h
    521522  else
     
    526527# Build the appropriate 'dimensions.h' file
    527528cd dimension
    528 makdim $ntrac $dim
     529./makdim $ntrac $dim
    529530# echo contents of dimensions.h to standard output
    530531cat $libf/grid/dimensions.h
    531532
    532533# Build the appropriate 'bands.h' file
    533 makbands $bands
     534cd $libf/phy$physique/bands
     535./makbands $bands
    534536# echo contents of bands.h to standard output
    535 cat $libf/grid/bands.h
     537cat $libf/phy$physique/bands.h
    536538
    537539# Build the appropriate 'scatterers.h' file
     
    777779\rm -f $libf/grid/dimensions.h
    778780\rm -f $libf/grid/bands.h
     781\rm -f $libf/phy${physique}/bands.h
    779782\rm -f $libf/phy$physique/scatterers.h
  • trunk/LMDZ.GENERIC/makegcm_gfortran

    r671 r955  
    523523    \rm -f $libf/grid/dimensions.h
    524524    \rm -f $libf/grid/bands.h
     525    \rm -f $libf/phy${physique}/bands.h
    525526    \rm -f $libf/phy${physique}/scatterers.h
    526527  else
     
    536537
    537538# Build the appropriate 'bands.h' file
     539cd $libf/phy$physique/bands
    538540./makbands $bands
    539541# echo contents of bands.h to standard output
    540 cat $libf/grid/bands.h
     542cat $libf/phy$physique/bands.h
    541543
    542544# Build the appropriate 'scatterers.h' file
     
    790792\rm -f $libf/grid/dimensions.h
    791793\rm -f $libf/grid/bands.h
     794\rm -f $libf/phy$physique/bands.h
    792795\rm -f $libf/phy$physique/scatterers.h
  • trunk/LMDZ.GENERIC/makegcm_ifort

    r952 r955  
    525525    \rm -f $libf/grid/dimensions.h
    526526    \rm -f $libf/grid/bands.h
     527    \rm -f $libf/phy${physique}/bands.h
    527528    \rm -f $libf/phy${physique}/scatterers.h
    528529  else
     
    533534# Build the appropriate 'dimensions.h' file
    534535cd dimension
    535 makdim $ntrac $dim
     536./makdim $ntrac $dim
    536537# echo contents of dimensions.h to standard output
    537538cat $libf/grid/dimensions.h
    538539
    539540# Build the appropriate 'bands.h' file
    540 makbands $bands
     541cd $libf/phy$physique/bands
     542./makbands $bands
    541543# echo contents of bands.h to standard output
    542 cat $libf/grid/bands.h
     544cat $libf/phy$physique/bands.h
    543545
    544546# Build the appropriate 'scatterers.h' file
     
    790792\rm -f $libf/grid/dimensions.h
    791793\rm -f $libf/grid/bands.h
     794\rm -f $libf/phy${physique}/bands.h
    792795\rm -f $libf/phy$physique/scatterers.h
  • trunk/LMDZ.GENERIC/makegcm_pgf90

    r671 r955  
    520520    \rm -f $libf/grid/dimensions.h
    521521    \rm -f $libf/grid/bands.h
     522    \rm -f $libf/phy${physique}/bands.h
    522523    \rm -f $libf/phy${physique}/scatterers.h
    523524  else
     
    528529# Build the appropriate 'dimensions.h' file
    529530cd dimension
    530 makdim $ntrac $dim
     531./makdim $ntrac $dim
    531532# echo contents of dimensions.h to standard output
    532533cat $libf/grid/dimensions.h
    533534
    534535# Build the appropriate 'bands.h' file
    535 makbands $bands
     536cd $libf/phy$physique/bands
     537./makbands $bands
    536538# echo contents of bands.h to standard output
    537 cat $libf/grid/bands.h
     539cat $libf/phy$physique/bands.h
    538540
    539541# Build the appropriate 'scatterers.h' file
     
    787789\rm -f $libf/grid/dimensions.h
    788790\rm -f $libf/grid/bands.h
     791\rm -f $libf/phy$physique/bands.h
    789792\rm -f $libf/phy$physique/scatterers.h
Note: See TracChangeset for help on using the changeset viewer.