Changeset 9766
- Timestamp:
- 09/11/11 11:28:37 (14 years ago)
- Location:
- issm/trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/groundingline.m
r9751 r9766 59 59 end 60 60 pos=find(md.mask.vertexonfloatingice); 61 if any(md.geometry.bathymetry(pos)-md.geometry.bed(pos)> tolerance),61 if any(md.geometry.bathymetry(pos)-md.geometry.bed(pos)>10^-9), 62 62 checkmessage(['bathymetry superior to bed on floating ice !']); 63 63 end -
issm/trunk/src/m/classes/rifts.m
r9751 r9766 48 48 end 49 49 %Check that rifts are filled with proper material 50 checkvalues(md,{'rifts .riftstruct.fill'},[WaterEnum() AirEnum() IceEnum() MelangeEnum()]);50 checkvalues(md,{'riftstruct.fill'},[WaterEnum() AirEnum() IceEnum() MelangeEnum()]); 51 51 else 52 52 if ~isnans(obj.riftstruct), -
issm/trunk/test/NightlyRun/test1110.m
r9734 r9766 50 50 md.timestepping.time_step=3; 51 51 md.timestepping.final_time=300; 52 md. output_frequency=50;52 md.settings.output_frequency=50; 53 53 md.prognostic.stabilization=1; 54 54 md.diagnostic.maxiter=1; -
issm/trunk/test/NightlyRun/test1201.m
r9765 r9766 37 37 38 38 %solve 39 md. isdiagnostic=0;40 md. output_frequency=500; %keep only last step39 md.transient.isdiagnostic=0; 40 md.settings.output_frequency=500; %keep only last step 41 41 md.verbose=verbose(); 42 42 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test1208.m
r9729 r9766 20 20 %Adapt the time steps to the resolution 21 21 md.timestepping.time_step=20; 22 md. output_frequency=20;22 md.settings.output_frequency=20; 23 23 md.timestepping.final_time=50000; 24 24 md.prognostic.stabilization=2; -
issm/trunk/test/NightlyRun/test1302.m
r9734 r9766 20 20 %analytical results 21 21 %d2T/dz2-w*rho_ice*c/k*dT/dz=0 T(surface)=0 T(bed)=10 => T=A exp(alpha z)+B 22 alpha=0.1/md.constants.yts*md.materials.rho_ice*md. heatcapacity/md.thermalconductivity; %alpha=w rho_ice c /k and w=0.1m/an22 alpha=0.1/md.constants.yts*md.materials.rho_ice*md.materials.heatcapacity/md.materials.thermalconductivity; %alpha=w rho_ice c /k and w=0.1m/an 23 23 A=10/(exp(alpha*(-1000))-1); %A=T(bed)/(exp(alpha*bed)-1) with bed=-1000 T(bed)=10 24 24 B=-A; -
issm/trunk/test/NightlyRun/test1304.m
r9734 r9766 19 19 %the result is linear with depth and is equal to 0 on the upper surface (See BC) 20 20 %d2T/dz2=0 -k*dT/dz(bed)=G T(surface)=0 => T=-G/k*(z-surface) 21 md.initialization.temperature=-0.1/md. thermalconductivity*(md.mesh.z-md.geometry.surface); %G=0.1 W/m221 md.initialization.temperature=-0.1/md.materials.thermalconductivity*(md.mesh.z-md.geometry.surface); %G=0.1 W/m2 22 22 23 23 %modeled results -
issm/trunk/test/NightlyRun/test1501.m
r9734 r9766 6 6 md=setflowequation(md,'macayeal','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 md. isthermal=0;8 md.transient.isthermal=0; 9 9 10 10 md.timestepping.time_step=1; 11 md. output_frequency=1;11 md.settings.output_frequency=1; 12 12 md.timestepping.final_time=2000; 13 13 -
issm/trunk/test/NightlyRun/test1502.m
r9734 r9766 7 7 md=extrude(md,3,1); 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 md. isthermal=0;9 md.transient.isthermal=0; 10 10 11 11 md.timestepping.time_step=1; 12 md. output_frequency=1;12 md.settings.output_frequency=1; 13 13 md.timestepping.final_time=2000; 14 14
Note:
See TracChangeset
for help on using the changeset viewer.