[24313] | 1 | import numpy as np
|
---|
[16560] | 2 | from paterson import paterson
|
---|
| 3 | from SetMarineIceSheetBC import SetMarineIceSheetBC
|
---|
[14102] | 4 |
|
---|
| 5 | #Ok, start defining model parameters here
|
---|
| 6 |
|
---|
[24313] | 7 | md.timestepping.time_step = 0
|
---|
| 8 | md.groundingline.migration = 'None'
|
---|
[14102] | 9 |
|
---|
[24313] | 10 | print(" creating thickness")
|
---|
| 11 | h = 1000.
|
---|
| 12 | md.geometry.thickness = h * np.ones((md.mesh.numberofvertices))
|
---|
| 13 | md.geometry.base = -1000. * np.ones((md.mesh.numberofvertices))
|
---|
| 14 | md.geometry.surface = md.geometry.base + md.geometry.thickness
|
---|
[14102] | 15 |
|
---|
[24313] | 16 | print(" creating velocities")
|
---|
| 17 | md.initialization.vx = np.zeros((md.mesh.numberofvertices))
|
---|
| 18 | md.initialization.vy = np.zeros((md.mesh.numberofvertices))
|
---|
| 19 | md.initialization.vz = np.zeros((md.mesh.numberofvertices))
|
---|
[14102] | 20 |
|
---|
[24313] | 21 | print(" creating drag")
|
---|
| 22 | md.friction.coefficient = 200. * np.ones((md.mesh.numberofvertices))
|
---|
[25836] | 23 | md.friction.coefficient[np.nonzero(md.mask.ocean_levelset < 0.)[0]] = 0.
|
---|
[24313] | 24 | md.friction.p = np.ones((md.mesh.numberofelements))
|
---|
| 25 | md.friction.q = np.ones((md.mesh.numberofelements))
|
---|
[14102] | 26 |
|
---|
[24313] | 27 | print(" creating temperatures")
|
---|
| 28 | md.initialization.temperature = (273. - 20.) * np.ones((md.mesh.numberofvertices))
|
---|
| 29 | md.initialization.pressure = np.zeros((md.mesh.numberofvertices, ))
|
---|
| 30 | md.initialization.waterfraction = np.zeros((md.mesh.numberofvertices, ))
|
---|
| 31 | md.initialization.watercolumn = np.zeros((md.mesh.numberofvertices, ))
|
---|
[14102] | 32 |
|
---|
[24313] | 33 | print(" creating flow law parameter")
|
---|
| 34 | md.materials.rheology_B = paterson(md.initialization.temperature)
|
---|
| 35 | md.materials.rheology_n = 3. * np.ones((md.mesh.numberofelements))
|
---|
[14102] | 36 |
|
---|
[24313] | 37 | print(" creating surface mass balance")
|
---|
| 38 | md.smb.mass_balance = np.ones((md.mesh.numberofvertices)) / md.constants.yts #1m / a
|
---|
| 39 | #md.basalforcings.melting_rate = 0. * np.ones((md.mesh.numberofvertices)) / md.constants.yts #1m / a
|
---|
| 40 | md.basalforcings.groundedice_melting_rate = 0. * np.ones((md.mesh.numberofvertices)) / md.constants.yts #1m / a
|
---|
| 41 | md.basalforcings.floatingice_melting_rate = 0. * np.ones((md.mesh.numberofvertices)) / md.constants.yts #1m / a
|
---|
[14102] | 42 |
|
---|
| 43 | #Deal with boundary conditions:
|
---|
| 44 |
|
---|
[24313] | 45 | print(" boundary conditions for stressbalance model")
|
---|
| 46 | md = SetMarineIceSheetBC(md, '../Exp/SquareFront.exp')
|
---|
[14102] | 47 |
|
---|
[24313] | 48 | print(" boundary conditions for thermal model")
|
---|
| 49 | md.thermal.spctemperature[:] = md.initialization.temperature
|
---|
| 50 | md.basalforcings.geothermalflux = np.zeros((md.mesh.numberofvertices))
|
---|
[25836] | 51 | md.basalforcings.geothermalflux[np.nonzero(md.mask.ocean_levelset > 0.)[0]] = 1. * 10**-3 #1 mW / m^2
|
---|