Changeset 1910


Ignore:
Timestamp:
08/26/09 09:16:16 (16 years ago)
Author:
Mathieu Morlighem
Message:

better way to parameterize nightly run

File:
1 moved

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/utils/Nightly/testsparameterization.m

    r1909 r1910  
    1 function [analysis_type sub_analysis_type]=testsgetanalys(string),
    2 %TESTSGETANALYSIS - build the analysis type and sub analysis type from a string
     1function [md analysis_type sub_analysis_type packagefinal]=testsparameterization(md,solution,package)
     2%TESTSPARAMETERIZATION - build the analysis type and sub analysis type from a string
    33%
    44%   This routine is used by nightly runs (runme.m and updatearchive.m).
     
    66%
    77%   Usage:
    8 %      [analysis_type sub_analysis_type]=testsgetanalysis(string)
     8%      [md analysis_type sub_analysis_type packagefinal]=testsparameterization(md,solution,package)
    99%
    1010%   Example:
    11 %      [analysis_type sub_analysis_type]=testsgetanalysis('diagnostic');
     11%      [md analysis_type sub_analysis_type packagefinal]=testsparameterization(md,'diagnostic','cielo_serial')
    1212%
    13 %   See also: TESTSGETPACKAGE, TESTSGETFIELDS
     13%   See also: TESTSGETFIELDS
    1414
    15 if strcmpi(string,'diagnostic'),
     15%prepare analysis and parameterize model
     16if strcmpi(solution,'diagnostic'),
    1617        analysis_type='diagnostic';
    1718        sub_analysis_type='none';
    1819
    19 elseif strcmpi(string,'prognostic'),
     20elseif strcmpi(solution,'prognostic'),
    2021        analysis_type='prognostic';
    2122        sub_analysis_type='none';
    2223
    23 elseif strcmpi(string,'thermalsteady'),
     24elseif strcmpi(solution,'thermal_steady'),
     25        analysis_type='thermal';
     26        sub_analysis_type='none';
     27        md.dt=0;
     28
     29elseif strcmpi(solution,'thermalt_ransient'),
    2430        analysis_type='thermal';
    2531        sub_analysis_type='none';
    2632
    27 elseif strcmpi(string,'thermaltransient'),
    28         analysis_type='thermal';
    29         sub_analysis_type='none';
    30 
    31 elseif strcmpi(string,'transient'),
     33elseif strcmpi(solution,'transient'),
    3234        sub_analysis_type='none';
    3335        analysis_type='transient';
    3436
    35 elseif strcmpi(string,'steadystate'),
     37elseif strcmpi(solution,'steadystate'),
    3638        sub_analysis_type='none';
    3739        analysis_type='steadystate';
    3840
     41elseif (strncmpi(solution,'diagnostic_',11) |  strncmpi(solution,'steadystate_',12)),
     42
     43        %activate control method,
     44        md.control_analysis=1;
     45
     46        %1: get fit
     47        solution2=strsplit(solution,'_');
     48        if strcmpi(solution2{2},'absolute'),
     49                md.fit(:)=0;
     50        elseif strcmpi(solution2{2},'relative'),
     51                md.fit(:)=1;
     52        elseif strcmpi(solution2{2},'logarithmic'),
     53                md.fit(:)=2;
     54        else
     55                error(['testsparameterization error message: solution2 ' solution2{2} ' not supported yet']);
     56        end
     57
     58        %2: get analysis types
     59        if strcmpi(solution2{1},'diagnostic'),
     60                analysis_type='diagnostic';
     61                sub_analysis_type='none';
     62        else
     63                analysis_type='steadystate';
     64                sub_analysis_type='none';
     65        end
     66
    3967else
    40         error(['testsgetanalysis error message: solution '  string ' not supported yet']);
     68        error(['testsparameterization error message: solution '  solution ' not supported yet']);
    4169end
     70
     71%prepare packagefinal
     72if strcmpi(package,'ice'),
     73        packagefinal='ice';
     74
     75elseif strcmpi(package,'macayeal'),
     76        packagefinal='macayeal';
     77
     78elseif strcmpi(package,'cielo_serial'),
     79        packagefinal='cielo';
     80        md.cluster='none';
     81
     82elseif strcmpi(package,'cielo_parallel'),
     83        packagefinal='cielo';
     84        md.cluster=oshostname;
     85        %check and modify number of cpus if necessary
     86        np=feature('numCores');
     87        if np<md.np;
     88                disp(['testsgetpackagefinal warning: changing number of cpus to ' num2str(np) ]);
     89                md.np=np;
     90        end
     91
     92else
     93        error(['testsparameterization error message: packagefinal '  package ' not supported yet']);
     94end
Note: See TracChangeset for help on using the changeset viewer.