Changeset 955 for trunk/LMDZ.GENERIC
- Timestamp:
- May 10, 2013, 11:32:50 AM (12 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 1 added
- 5 deleted
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r952 r955 933 933 (particularly exchanges heat+momentum exchanges between surface and atmosphere) 934 934 - 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 529 529 ice_update=.false. 530 530 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 532 538 read(128,*) num_run 533 539 close(128) -
trunk/LMDZ.GENERIC/makegcm_g95
r671 r955 518 518 \rm -f $libf/grid/dimensions.h 519 519 \rm -f $libf/grid/bands.h 520 \rm -f $libf/phy${physique}/bands.h 520 521 \rm -f $libf/phy${physique}/scatterers.h 521 522 else … … 526 527 # Build the appropriate 'dimensions.h' file 527 528 cd dimension 528 makdim $ntrac $dim529 ./makdim $ntrac $dim 529 530 # echo contents of dimensions.h to standard output 530 531 cat $libf/grid/dimensions.h 531 532 532 533 # Build the appropriate 'bands.h' file 533 makbands $bands 534 cd $libf/phy$physique/bands 535 ./makbands $bands 534 536 # echo contents of bands.h to standard output 535 cat $libf/ grid/bands.h537 cat $libf/phy$physique/bands.h 536 538 537 539 # Build the appropriate 'scatterers.h' file … … 777 779 \rm -f $libf/grid/dimensions.h 778 780 \rm -f $libf/grid/bands.h 781 \rm -f $libf/phy${physique}/bands.h 779 782 \rm -f $libf/phy$physique/scatterers.h -
trunk/LMDZ.GENERIC/makegcm_gfortran
r671 r955 523 523 \rm -f $libf/grid/dimensions.h 524 524 \rm -f $libf/grid/bands.h 525 \rm -f $libf/phy${physique}/bands.h 525 526 \rm -f $libf/phy${physique}/scatterers.h 526 527 else … … 536 537 537 538 # Build the appropriate 'bands.h' file 539 cd $libf/phy$physique/bands 538 540 ./makbands $bands 539 541 # echo contents of bands.h to standard output 540 cat $libf/ grid/bands.h542 cat $libf/phy$physique/bands.h 541 543 542 544 # Build the appropriate 'scatterers.h' file … … 790 792 \rm -f $libf/grid/dimensions.h 791 793 \rm -f $libf/grid/bands.h 794 \rm -f $libf/phy$physique/bands.h 792 795 \rm -f $libf/phy$physique/scatterers.h -
trunk/LMDZ.GENERIC/makegcm_ifort
r952 r955 525 525 \rm -f $libf/grid/dimensions.h 526 526 \rm -f $libf/grid/bands.h 527 \rm -f $libf/phy${physique}/bands.h 527 528 \rm -f $libf/phy${physique}/scatterers.h 528 529 else … … 533 534 # Build the appropriate 'dimensions.h' file 534 535 cd dimension 535 makdim $ntrac $dim536 ./makdim $ntrac $dim 536 537 # echo contents of dimensions.h to standard output 537 538 cat $libf/grid/dimensions.h 538 539 539 540 # Build the appropriate 'bands.h' file 540 makbands $bands 541 cd $libf/phy$physique/bands 542 ./makbands $bands 541 543 # echo contents of bands.h to standard output 542 cat $libf/ grid/bands.h544 cat $libf/phy$physique/bands.h 543 545 544 546 # Build the appropriate 'scatterers.h' file … … 790 792 \rm -f $libf/grid/dimensions.h 791 793 \rm -f $libf/grid/bands.h 794 \rm -f $libf/phy${physique}/bands.h 792 795 \rm -f $libf/phy$physique/scatterers.h -
trunk/LMDZ.GENERIC/makegcm_pgf90
r671 r955 520 520 \rm -f $libf/grid/dimensions.h 521 521 \rm -f $libf/grid/bands.h 522 \rm -f $libf/phy${physique}/bands.h 522 523 \rm -f $libf/phy${physique}/scatterers.h 523 524 else … … 528 529 # Build the appropriate 'dimensions.h' file 529 530 cd dimension 530 makdim $ntrac $dim531 ./makdim $ntrac $dim 531 532 # echo contents of dimensions.h to standard output 532 533 cat $libf/grid/dimensions.h 533 534 534 535 # Build the appropriate 'bands.h' file 535 makbands $bands 536 cd $libf/phy$physique/bands 537 ./makbands $bands 536 538 # echo contents of bands.h to standard output 537 cat $libf/ grid/bands.h539 cat $libf/phy$physique/bands.h 538 540 539 541 # Build the appropriate 'scatterers.h' file … … 787 789 \rm -f $libf/grid/dimensions.h 788 790 \rm -f $libf/grid/bands.h 791 \rm -f $libf/phy$physique/bands.h 789 792 \rm -f $libf/phy$physique/scatterers.h
Note: See TracChangeset
for help on using the changeset viewer.