Changeset 24058
- Timestamp:
- 07/02/19 07:31:17 (6 years ago)
- Location:
- issm/trunk-jpl/src/m/parameterization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/parameterization/setflowequation.m
r19535 r24058 116 116 117 117 %Now take care of the coupling between SSA and HO 118 md.stressbalance.vertex_pairing=[]; 118 if strcmpi(coupling_method,'penalties'), 119 md.stressbalance.vertex_pairing=[]; 120 end 119 121 nodeonSSAHO=zeros(md.mesh.numberofvertices,1); 120 122 nodeonHOFS=zeros(md.mesh.numberofvertices,1); -
issm/trunk-jpl/src/m/parameterization/setflowequation.py
r23716 r24058 107 107 108 108 #Now take care of the coupling between SSA and HO 109 md.stressbalance.vertex_pairing=np.array([]) 109 if not coupling_method in ['penalties']: 110 md.stressbalance.vertex_pairing=np.array([]) 110 111 nodeonSSAHO=np.zeros(md.mesh.numberofvertices,bool) 111 112 nodeonHOFS=np.zeros(md.mesh.numberofvertices,bool)
Note:
See TracChangeset
for help on using the changeset viewer.