Changeset 24122


Ignore:
Timestamp:
08/26/19 11:27:09 (6 years ago)
Author:
dmenemen
Message:

updating test/NightlyRun/test4003.m
to use its own MITgcm code and input directories

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test4003.m

    r23989 r24122  
    151151    !\cp ../MITgcm/build/mitgcmuv run
    152152    !\cp ../MITgcm/install_dngoldberg/verification/shelfice_remeshing/input/* run
     153    !\cp ../MITgcm/input_4003/* run
     154    !\cp ../MITgcm/input_4003/eedata_uncoupled run/eedata
    153155    cd run
    154156    eval(['!mpirun -np ' int2str(nPx*nPy) ' ./mitgcmuv']);
     
    360362        !\cp ../MITgcm/build/mitgcmuv run
    361363        !\cp ../MITgcm/install_dngoldberg/verification/shelfice_remeshing/input/* run
     364        !\cp ../MITgcm/input_4003/* run
    362365        % }}}
    363         % {{{ generate MITgcm parameter file data
    364         fidi=fopen('../MITgcm/input/data','r');
    365         fido=fopen('run/data','w');
    366         tline = fgetl(fidi);
    367         fprintf(fido,'%s\n',tline);
    368         while 1
    369             tline = fgetl(fidi);
    370             if ~ischar(tline), break, end
    371             %do the change here:
    372             if strcmpi(tline,' xgOrigin = 0.0,'),
    373                 fprintf(fido,'%s%i%s\n',' xgOrigin = ',xgOrigin,',');
    374                 continue;
    375             end
    376             if strcmpi(tline,' ygOrigin = -80.0,'),
    377                 fprintf(fido,'%s%i%s\n',' ygOrigin = ',ygOrigin,',');
    378                 continue;
    379             end
    380             if strcmpi(tline,' delX = 20*0.25,'),
    381                 fprintf(fido,'%s%i*%g%s\n',' delX = ',Nx,dLong,',');
    382                 continue;
    383             end
    384             if strcmpi(tline,' delY = 20*0.25,'),
    385                 fprintf(fido,'%s%i*%g%s\n',' delY = ',Ny,dLat,',');
    386                 continue;
    387             end
    388             if strcmpi(tline,' delZ = 30*30.0,'),
    389                 fprintf(fido,'%s%i*%g%s\n',' delZ = ',Nz,delZ,',');
    390                 continue;
    391             end
    392             if strcmpi(tline,' endTime=2592000.,'),
    393                 fprintf(fido,'%s%i%s\n',' endTime= ',endtime,',');
    394                 continue;
    395             end
    396             if strcmpi(tline,' deltaT=1200.0,'),
    397                 fprintf(fido,'%s%i%s\n',' deltaT= ',MITgcmDeltaT,',');
    398                 continue;
    399             end
    400             if strcmpi(tline,' pChkptFreq=2592000.,'),
    401                 fprintf(fido,'%s%i%s\n',' pChkptFreq= ',endtime,',');
    402                 continue;
    403             end
    404             if strcmpi(tline,' taveFreq=2592000.,'),
    405                 fprintf(fido,'%s%i%s\n',' taveFreq= ',outputtime,',');
    406                 continue;
    407             end
    408             if strcmpi(tline,' rhoConst=1030.,'),
    409                 fprintf(fido,'%s%i%s\n',' rhoConst= ',rho_water,',');
    410                 continue;
    411             end
    412             if strcmpi(tline,' rhoNil=1030.,'),
    413                 fprintf(fido,'%s%i%s\n',' rhoNil= ',rho_water,',');
    414                 continue;
    415             end
    416             fprintf(fido,'%s\n',tline);
    417         end
    418         %close  files
    419         fclose(fidi);
    420         fclose(fido);
    421         % }}}
    422                
    423366                  md.timestepping.coupling_time=time_step;
    424367                  md.timestepping.time_step=time_step;
Note: See TracChangeset for help on using the changeset viewer.