Changeset 27197
- Timestamp:
- 08/05/22 20:24:52 (3 years ago)
- Location:
- issm/trunk-jpl/examples/Greenland
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/examples/Greenland/runme.m
r27028 r27197 21 21 22 22 %Mesh Greenland 23 md=bamg(md,'hmax',400000,'hmin',5000,'gradation',1. 7,'field',vel,'err',8);23 md=bamg(md,'hmax',400000,'hmin',5000,'gradation',1.4,'field',vel,'err',8); 24 24 25 25 %convert x,y coordinates (Polar stereo) to lat/lon … … 56 56 md.inversion.cost_functions_coefficients=ones(md.mesh.numberofvertices,3); 57 57 md.inversion.cost_functions_coefficients(:,1)=350; 58 md.inversion.cost_functions_coefficients(:,2)=0. 6;58 md.inversion.cost_functions_coefficients(:,2)=0.2; 59 59 md.inversion.cost_functions_coefficients(:,3)=2e-6; 60 60 -
issm/trunk-jpl/examples/Greenland/runme.py
r26559 r27197 42 42 43 43 #Mesh Greenland 44 md = bamg(md, 'hmax', 400000, 'hmin', 5000, 'gradation', 1. 7, 'field', vel, 'err', 8)44 md = bamg(md, 'hmax', 400000, 'hmin', 5000, 'gradation', 1.4, 'field', vel, 'err', 8) 45 45 46 46 #convert x, y coordinates (Polar stereo) to lat / lon … … 77 77 md.inversion.cost_functions_coefficients = np.ones((md.mesh.numberofvertices, 3)) 78 78 md.inversion.cost_functions_coefficients[:, 0] = 350 79 md.inversion.cost_functions_coefficients[:, 1] = 0. 679 md.inversion.cost_functions_coefficients[:, 1] = 0.2 80 80 md.inversion.cost_functions_coefficients[:, 2] = 2e-6 81 81
Note:
See TracChangeset
for help on using the changeset viewer.