Changeset 17767
- Timestamp:
- 04/18/14 09:46:20 (11 years ago)
- Location:
- issm/trunk-jpl/test/Par
- Files:
-
- 40 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/Par/79North.par
r17762 r17767 20 20 md.materials.rheology_B=paterson(md.initialization.temperature); 21 21 md.materials.rheology_n=3*ones(md.mesh.numberofelements,1); 22 23 %Damage 24 md.damage.isdamage=0; 22 25 23 26 %Friction -
issm/trunk-jpl/test/Par/79North.py
r17762 r17767 33 33 md.initialization.temperature=md.initialization.temperature 34 34 35 #Damage 36 md.damage.isdamage=0 37 35 38 #Friction 36 39 md.friction.coefficient=50.*numpy.ones((md.mesh.numberofvertices,1)) -
issm/trunk-jpl/test/Par/GiaBenchmarksAB.par
r17762 r17767 44 44 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 45 45 46 %Damage 47 md.damage.isdamage=0; 48 46 49 %Friction 47 50 md.friction.coefficient=20.*ones(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/GiaBenchmarksCD.par
r17762 r17767 43 43 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 44 44 45 %Damage 46 md.damage.isdamage=0; 47 45 48 %Friction 46 49 md.friction.coefficient=20.*ones(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/ISMIPA.par
r17762 r17767 16 16 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 17 17 18 %Damage 19 md.damage.isdamage=0; 20 18 21 disp(' boundary conditions for stressbalance model'); 19 22 %Create node on boundary first (because we cannot use mesh) -
issm/trunk-jpl/test/Par/ISMIPA.py
r17762 r17767 19 19 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 20 20 21 #Damage 22 md.damage.isdamage=0 23 21 24 print " boundary conditions for stressbalance model" 22 25 #Create node on boundary first (because we cannot use mesh) -
issm/trunk-jpl/test/Par/ISMIPB.par
r17762 r17767 16 16 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 17 17 18 %Damage 19 md.damage.isdamage=0; 20 18 21 disp(' boundary conditions for stressbalance model'); 19 22 %Create node on boundary first (because we cannot use mesh) -
issm/trunk-jpl/test/Par/ISMIPB.py
r17762 r17767 19 19 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 20 20 21 #Damage 22 md.damage.isdamage=0 23 21 24 print " boundary conditions for stressbalance model" 22 25 #Create node on boundary first (because we cannot use mesh) -
issm/trunk-jpl/test/Par/ISMIPC.par
r17762 r17767 17 17 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 18 18 19 %Damage 20 md.damage.isdamage=0; 21 19 22 disp(' boundary conditions for stressbalance model:'); 20 23 %Create node on boundary first (because we can not use mesh) -
issm/trunk-jpl/test/Par/ISMIPC.py
r17762 r17767 20 20 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 21 21 22 #Damage 23 md.damage.isdamage=0 24 22 25 print " boundary conditions for stressbalance model:" 23 26 #Create node on boundary first (because we can not use mesh) -
issm/trunk-jpl/test/Par/ISMIPD.par
r17762 r17767 16 16 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 17 17 18 %Damage 19 md.damage.isdamage=0; 20 18 21 disp(' boundary conditions for stressbalance model:'); 19 22 %Create node on boundary first (because we can not use mesh) -
issm/trunk-jpl/test/Par/ISMIPD.py
r17762 r17767 19 19 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 20 20 21 #Damage 22 md.damage.isdamage=0 23 21 24 print " boundary conditions for stressbalance model:" 22 25 #Create node on boundary first (because we can not use mesh) -
issm/trunk-jpl/test/Par/ISMIPE.par
r17762 r17767 26 26 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 27 27 28 %Damage 29 md.damage.isdamage=0; 30 28 31 disp(' boundary conditions for stressbalance model:'); 29 32 %Create node on boundary first (because we can not use mesh) -
issm/trunk-jpl/test/Par/ISMIPE.py
r17762 r17767 31 31 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 32 32 33 #Damage 34 md.damage.isdamage=0 35 33 36 print " boundary conditions for stressbalance model:" 34 37 #Create node on boundary first (because we can not use mesh) -
issm/trunk-jpl/test/Par/ISMIPF.par
r17762 r17767 17 17 md.materials.rheology_n=1.*ones(md.mesh.numberofelements,1); 18 18 md.materials.rheology_law='None'; 19 20 %Damage 21 md.damage.isdamage=0; 19 22 20 23 disp(' boundary conditions for stressbalance model'); -
issm/trunk-jpl/test/Par/ISMIPF.py
r17762 r17767 20 20 md.materials.rheology_n=1.*numpy.ones((md.mesh.numberofelements,1)) 21 21 md.materials.rheology_law='None' 22 23 #Damage 24 md.damage.isdamage=0 22 25 23 26 print " boundary conditions for stressbalance model" -
issm/trunk-jpl/test/Par/Pig.par
r17762 r17767 26 26 md.initialization.temperature=md.initialization.temperature; 27 27 28 %Damage 29 md.damage.isdamage=0; 30 28 31 %Friction 29 32 md.friction.coefficient=50*ones(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/Pig.py
r17762 r17767 37 37 md.initialization.temperature=md.initialization.temperature 38 38 39 #Damage 40 md.damage.isdamage=0 41 39 42 #Friction 40 43 md.friction.coefficient=50.*numpy.ones((md.mesh.numberofvertices,1)) -
issm/trunk-jpl/test/Par/RoundSheetEISMINT.par
r17762 r17767 20 20 md.materials.rheology_B=6.81*10^7*ones(md.mesh.numberofvertices,1); %to have the same B as the analytical solution 21 21 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 22 23 %Damage 24 md.damage.isdamage=0; 22 25 23 26 disp(' creating surface mass balance'); -
issm/trunk-jpl/test/Par/RoundSheetEISMINT.py
r17762 r17767 23 23 md.materials.rheology_B=6.81*10**7*numpy.ones((md.mesh.numberofvertices,1)) #to have the same B as the analytical solution 24 24 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 25 26 #Damage 27 md.damage.isdamage=0 25 28 26 29 print " creating surface mass balance" -
issm/trunk-jpl/test/Par/RoundSheetShelf.par
r17762 r17767 61 61 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 62 62 63 %Damage 64 md.damage.isdamage=0; 65 63 66 %Surface mass balance and basal melting 64 67 md.surfaceforcings.mass_balance=-10.*ones(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/RoundSheetShelf.py
r17762 r17767 68 68 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 69 69 70 #Damage 71 md.damage.isdamage=0 72 70 73 #Surface mass balance and basal melting 71 74 md.surfaceforcings.mass_balance=-10.*numpy.ones((md.mesh.numberofvertices,1)) -
issm/trunk-jpl/test/Par/RoundSheetStaticEISMINT.par
r17762 r17767 24 24 md.materials.rheology_B=6.81*10^7*ones(md.mesh.numberofvertices,1); %to have the same B as the analytical solution 25 25 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 26 27 %Damage 28 md.damage.isdamage=0; 26 29 27 30 disp(' creating surface mass balance'); -
issm/trunk-jpl/test/Par/RoundSheetStaticEISMINT.py
r17762 r17767 28 28 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 29 29 30 #Damage 31 md.damage.isdamage=0 32 30 33 print " creating surface mass balance" 31 34 smb_max=0.5 #m/yr -
issm/trunk-jpl/test/Par/SquareEISMINT.par
r17762 r17767 26 26 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 27 27 28 %Damage 29 md.damage.isdamage=0; 30 28 31 disp(' creating surface mass balance'); 29 32 md.surfaceforcings.mass_balance=0.2*ones(md.mesh.numberofvertices,1); %0m/a -
issm/trunk-jpl/test/Par/SquareEISMINT.py
r17762 r17767 29 29 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 30 30 31 #Damage 32 md.damage.isdamage=0 33 31 34 print " creating surface mass balance" 32 35 md.surfaceforcings.mass_balance=0.2*numpy.ones((md.mesh.numberofvertices,1)) #0m/a -
issm/trunk-jpl/test/Par/SquareSheetConstrained.par
r17762 r17767 29 29 md.materials.rheology_B=paterson(md.initialization.temperature); 30 30 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 31 32 %Damage 33 md.damage.isdamage=0; 31 34 32 35 md.masstransport.calvingrate=zeros(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/SquareSheetConstrained.py
r17762 r17767 40 40 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 41 41 42 #Damage 43 md.damage.isdamage=0 44 42 45 #Masstransport 43 46 md.masstransport.calvingrate=0.*numpy.ones((md.mesh.numberofvertices,1)) -
issm/trunk-jpl/test/Par/SquareSheetShelf.par
r17762 r17767 32 32 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 33 33 34 %Damage 35 md.damage.isdamage=0; 36 34 37 %Accumulation and melting 35 38 md.surfaceforcings.mass_balance=10.*ones(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/SquareSheetShelf.py
r17762 r17767 43 43 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 44 44 45 #Damage 46 md.damage.isdamage=0 47 45 48 #Accumulation and melting 46 49 md.surfaceforcings.mass_balance=10.*numpy.ones((md.mesh.numberofvertices,1)) -
issm/trunk-jpl/test/Par/SquareShelf.par
r17762 r17767 29 29 md.materials.rheology_n=3*ones(md.mesh.numberofelements,1); 30 30 31 %Damage 32 md.damage.isdamage=0; 33 31 34 %Friction 32 35 md.friction.coefficient=20*ones(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/SquareShelf.py
r17762 r17767 59 59 md.materials.rheology_n = 3.*numpy.ones((md.mesh.numberofelements,1)) 60 60 61 #Damage 62 md.damage.isdamage=0 63 61 64 #Friction 62 65 md.friction.coefficient = 20.*numpy.ones((md.mesh.numberofvertices,1)) -
issm/trunk-jpl/test/Par/SquareShelf2.par
r17762 r17767 29 29 md.materials.rheology_n=3*ones(md.mesh.numberofelements,1); 30 30 31 %Damage 32 md.damage.isdamage=0; 33 31 34 %Friction 32 35 md.friction.coefficient=20*ones(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/SquareShelf2.py
r17762 r17767 59 59 md.materials.rheology_n = 3.*numpy.ones((md.mesh.numberofelements,1)) 60 60 61 #Damage 62 md.damage.isdamage=0 63 61 64 #Friction 62 65 md.friction.coefficient = 20.*numpy.ones((md.mesh.numberofvertices,1)) -
issm/trunk-jpl/test/Par/SquareShelfConstrained.par
r17762 r17767 29 29 md.materials.rheology_n=3*ones(md.mesh.numberofelements,1); 30 30 31 %Damage 32 md.damage.isdamage=0; 33 31 34 %Surface mass balance and basal melting 32 35 md.surfaceforcings.mass_balance=10*ones(md.mesh.numberofvertices,1); -
issm/trunk-jpl/test/Par/SquareShelfConstrained.py
r17762 r17767 40 40 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 41 41 42 #Damage 43 md.damage.isdamage=0 44 42 45 #Surface mass balance and basal melting 43 46 md.surfaceforcings.mass_balance=10.*numpy.ones((md.mesh.numberofvertices,1)) -
issm/trunk-jpl/test/Par/SquareThermal.par
r17762 r17767 27 27 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 28 28 29 %Damage 30 md.damage.isdamage=0; 31 29 32 disp(' creating surface mass balance'); 30 33 md.surfaceforcings.mass_balance=ones(md.mesh.numberofvertices,1)/md.constants.yts; %1m/a -
issm/trunk-jpl/test/Par/SquareThermal.py
r17762 r17767 31 31 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 32 32 33 #Damage 34 md.damage.isdamage=0 35 33 36 print " creating surface mass balance" 34 37 md.surfaceforcings.mass_balance=numpy.ones((md.mesh.numberofvertices,1))/md.constants.yts #1m/a -
issm/trunk-jpl/test/Par/ValleyGlacierShelf.par
r17762 r17767 40 40 md.materials.rheology_B = paterson(md.initialization.temperature); 41 41 md.materials.rheology_n = 3.*ones(md.mesh.numberofelements,1); 42 43 %Damage 44 md.damage.isdamage=0; 42 45 43 46 %Thermal -
issm/trunk-jpl/test/Par/ValleyGlacierShelf.py
r17762 r17767 47 47 md.materials.rheology_B=paterson(md.initialization.temperature) 48 48 md.materials.rheology_n=3.*numpy.ones((md.mesh.numberofelements,1)) 49 50 #Damage 51 md.damage.isdamage=0 49 52 50 53 #Thermal
Note:
See TracChangeset
for help on using the changeset viewer.