Changeset 17791
- Timestamp:
- 04/21/14 15:34:54 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/qmu/preqmu.m
r15771 r17791 13 13 % iparams: same thing for params 14 14 % overwrite: overwrite qmudir before analysis 15 % keep: keep qmudir after analysis16 % outfiles: (John?)17 % rstfile: backup file name18 % rundakota: (John?)19 % runmpi: (John?)20 15 21 16 disp('preprocessing dakota inputs'); 17 qmudir = getfieldvalue(options,'qmudir',['qmu' num2str(feature('GetPid'))]); % qmudir = ['qmu_' datestr(now,'yyyymmdd_HHMMSS')]; 18 qmufile = getfieldvalue(options,'qmufile','qmu');% qmufile cannot be changed unless ????script.sh is also changed 19 overwrite = getfieldvalue(options,'overwrite','n'); 20 ivar = getfieldvalue(options,'ivar',1); 21 iresp = getfieldvalue(options,'iresp',1); 22 imethod = getfieldvalue(options,'imethod',1); 23 iparams = getfieldvalue(options,'iparams',1); 22 24 23 25 %first create temporary directory in which we will work 24 if strncmpi(o ptions.overwrite,'y',1)25 system(['rm -rf ' options.qmudir '/*']);26 if strncmpi(overwrite,'y',1) 27 system(['rm -rf ' qmudir '/*']); 26 28 else 27 29 %does the directory exist? if so, then error out … … 34 36 35 37 %when running in library mode, the in file needs to be called md.miscellaneous.name.qmu.in 36 options.qmufile=[md.miscellaneous.name ];38 qmufile=[md.miscellaneous.name ]; 37 39 38 40 %retrieve variables and resposnes for this particular analysis. 39 variables=md.qmu.variables( options.ivar);40 responses=md.qmu.responses( options.iresp);41 variables=md.qmu.variables(ivar); 42 responses=md.qmu.responses(iresp); 41 43 42 44 %expand variables and responses … … 73 75 74 76 %create in file for dakota 75 dakota_in_data(md.qmu.method( options.imethod),variables,responses,md.qmu.params(options.iparams),options.qmufile);77 dakota_in_data(md.qmu.method(imethod),variables,responses,md.qmu.params(iparams),qmufile); 76 78 system(['rm -rf ' md.miscellaneous.name '.m']); 77 79 78 80 %build a list of variables and responses descriptors. the list is not expanded. {{{ 79 81 variabledescriptors={}; 80 variable_fieldnames=fieldnames(md.qmu.variables( options.ivar));82 variable_fieldnames=fieldnames(md.qmu.variables(ivar)); 81 83 for i=1:length(variable_fieldnames), 82 84 field_name=variable_fieldnames{i}; 83 fieldvariables=md.qmu.variables( options.ivar).(field_name);85 fieldvariables=md.qmu.variables(ivar).(field_name); 84 86 for j=1:numel(fieldvariables) 85 87 variabledescriptors{end+1}=fieldvariables(j).descriptor; … … 88 90 89 91 responsedescriptors={}; 90 response_fieldnames=fieldnames(md.qmu.responses( options.iresp));92 response_fieldnames=fieldnames(md.qmu.responses(iresp)); 91 93 for i=1:length(response_fieldnames), 92 94 field_name=response_fieldnames{i}; 93 fieldresponses=md.qmu.responses( options.iresp).(field_name);95 fieldresponses=md.qmu.responses(iresp).(field_name); 94 96 for j=1:numel(fieldresponses) 95 97 responsedescriptors{end+1}=fieldresponses(j).descriptor;
Note:
See TracChangeset
for help on using the changeset viewer.