Changeset 5110
- Timestamp:
- 08/10/10 08:59:49 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/scripts/historyISSM.m
r4252 r5110 1 % -- startup --2 startup;3 system('ln -s $ISSM_DIR/startup.m .'); startup;4 1 % -- vim -- 5 !vim configuration.m6 2 !vim runme.m 7 3 % -- tests -- 8 md=runme('analysis_type',DiagnosticSolutionEnum); 9 md=runme('analysis_type',DiagnosticSolutionEnum,'parallel',1); 10 runme('analysis_type',[DiagnosticSolutionEnum]); 4 md=runme('id',101); 5 runme('id',[101]); 11 6 % -- tweak parameters -- 12 7 md.numberofelements 13 8 md.numberofgrids 14 9 % -- model set up -- 15 md=model;16 10 md=mesh(md,'DomainOutline.exp',5000); 17 11 md=geography(md,'',''); … … 19 13 md=parameterize(md,'Antarctica.par'); 20 14 md=extrude(md,8,1); 15 md=setelementstype(md,'macayeal','all'); 21 16 md=setelementstype(md,'pattyn','all','stokes','all'); 22 md=setelementstype(md,'macayeal','all');23 17 % -- execution -- 24 18 md=solve(md,'analysis_type',ThermalSolutionEnum,'batch','yes'); … … 30 24 md=tres(md,DiagnosticSolutionEnum); 31 25 % -- plots -- 32 plotmodel(md,'data','vel') 33 plotmodel(md,'data',md.results.diagnostic.vel) 26 plotmodel(md,'data',md.results.DiagnosticSolution.vel)
Note:
See TracChangeset
for help on using the changeset viewer.