Changeset 18973
- Timestamp:
- 01/05/15 10:16:45 (10 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test3300.m
r18646 r18973 22 22 md.hydrology.mask_eplactive_node=0*ones(md.mesh.numberofvertices,1); 23 23 24 md.hydrology.epl_conductivity=1.5e-2; 24 pos=find(md.mesh.y==0 & md.mesh.x<6.0e5 & md.mesh.x>4.0e5); 25 md.hydrology.spcepl_head(pos)=0.0; 26 27 28 md.hydrology.epl_conductivity=1000; 25 29 md.hydrology.epl_initial_thickness=1.0; 26 md.hydrology.epl_colapse_thickness=1.0e- 6;30 md.hydrology.epl_colapse_thickness=1.0e-5; 27 31 md.hydrology.epl_max_thickness=5.0; 28 32 29 33 md.hydrology.transfer_flag=1.0; 30 md.hydrology.leakage_factor= 3.9e-12;34 md.hydrology.leakage_factor=1.0e-1; 31 35 32 times=0:0.2: 8.0;36 times=0:0.2:30.0; 33 37 md.basalforcings.groundedice_melting_rate=ones(md.mesh.numberofvertices+1,length(times)); 34 38 35 for i=1:length(times)36 if(times(i)<=1.0)37 md.basalforcings.groundedice_melting_rate(:,i)=1.0;38 elseif(times(i)<=6.0)39 md.basalforcings.groundedice_melting_rate(:,i)=-0.2;40 else41 md.basalforcings.groundedice_melting_rate(:,i)=0.0;42 end43 end44 39 % for i=1:length(times) 40 % if(times(i)<=1.0) 41 % md.basalforcings.groundedice_melting_rate(:,i)=1.0; 42 % elseif(times(i)<=6.0) 43 % md.basalforcings.groundedice_melting_rate(:,i)=-0.2; 44 % else 45 % md.basalforcings.groundedice_melting_rate(:,i)=0.0; 46 % end 47 % end 48 md.basalforcings.groundedice_melting_rate(:,:)=1.0; 45 49 md.basalforcings.groundedice_melting_rate(end,:)=times; 46 50 47 51 48 52 md.timestepping.time_step=0.2; 49 md.timestepping.final_time= 8.0;53 md.timestepping.final_time=30.0; 50 54 51 55 md=solve(md,TransientSolutionEnum());
Note:
See TracChangeset
for help on using the changeset viewer.