Changeset 1910
- Timestamp:
- 08/26/09 09:16:16 (16 years ago)
- 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 %TESTS GETANALYSIS- build the analysis type and sub analysis type from a string1 function [md analysis_type sub_analysis_type packagefinal]=testsparameterization(md,solution,package) 2 %TESTSPARAMETERIZATION - build the analysis type and sub analysis type from a string 3 3 % 4 4 % This routine is used by nightly runs (runme.m and updatearchive.m). … … 6 6 % 7 7 % Usage: 8 % [ analysis_type sub_analysis_type]=testsgetanalysis(string)8 % [md analysis_type sub_analysis_type packagefinal]=testsparameterization(md,solution,package) 9 9 % 10 10 % Example: 11 % [ analysis_type sub_analysis_type]=testsgetanalysis('diagnostic');11 % [md analysis_type sub_analysis_type packagefinal]=testsparameterization(md,'diagnostic','cielo_serial') 12 12 % 13 % See also: TESTSGET PACKAGE, TESTSGETFIELDS13 % See also: TESTSGETFIELDS 14 14 15 if strcmpi(string,'diagnostic'), 15 %prepare analysis and parameterize model 16 if strcmpi(solution,'diagnostic'), 16 17 analysis_type='diagnostic'; 17 18 sub_analysis_type='none'; 18 19 19 elseif strcmpi(s tring,'prognostic'),20 elseif strcmpi(solution,'prognostic'), 20 21 analysis_type='prognostic'; 21 22 sub_analysis_type='none'; 22 23 23 elseif strcmpi(string,'thermalsteady'), 24 elseif strcmpi(solution,'thermal_steady'), 25 analysis_type='thermal'; 26 sub_analysis_type='none'; 27 md.dt=0; 28 29 elseif strcmpi(solution,'thermalt_ransient'), 24 30 analysis_type='thermal'; 25 31 sub_analysis_type='none'; 26 32 27 elseif strcmpi(string,'thermaltransient'), 28 analysis_type='thermal'; 29 sub_analysis_type='none'; 30 31 elseif strcmpi(string,'transient'), 33 elseif strcmpi(solution,'transient'), 32 34 sub_analysis_type='none'; 33 35 analysis_type='transient'; 34 36 35 elseif strcmpi(s tring,'steadystate'),37 elseif strcmpi(solution,'steadystate'), 36 38 sub_analysis_type='none'; 37 39 analysis_type='steadystate'; 38 40 41 elseif (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 39 67 else 40 error(['tests getanalysis error message: solution ' string' not supported yet']);68 error(['testsparameterization error message: solution ' solution ' not supported yet']); 41 69 end 70 71 %prepare packagefinal 72 if strcmpi(package,'ice'), 73 packagefinal='ice'; 74 75 elseif strcmpi(package,'macayeal'), 76 packagefinal='macayeal'; 77 78 elseif strcmpi(package,'cielo_serial'), 79 packagefinal='cielo'; 80 md.cluster='none'; 81 82 elseif 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 92 else 93 error(['testsparameterization error message: packagefinal ' package ' not supported yet']); 94 end
Note:
See TracChangeset
for help on using the changeset viewer.