Changeset 36
- Timestamp:
- 04/24/09 13:45:12 (16 years ago)
- Location:
- issm/trunk/src/m/solutions/ice
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/solutions/ice/CreateFemModel.m
r1 r36 26 26 %generate grid sets and reduce yg to ys from g-set to s-set. 27 27 BuildGridSets(grids,constraints); ys=Reducevector_g(yg); 28 29 Gmn = IceNormalizeconstraints(Rmg); 28 29 %buile Gmn 30 Gmn=Normalizeconstraints(Rmg); 30 31 31 32 %recover dof number -
issm/trunk/src/m/solutions/ice/diagnostic_core_linear.m
r34 r36 51 51 % Reduce stiffness matrix from g set to f set (effectively rooting out the single point constraints), 52 52 % and compute modifications to loads from single point constraints. 53 [K_ff K_fs]= IceReducematrixfromgtof(K_gg,G_mn);53 [K_ff K_fs]=Reducematrixfromgtof(K_gg,G_mn); 54 54 55 55 % Reduce load from g set to f set 56 p_f= IceReducerightside(p_g,G_mn,K_fs,ys);56 p_f=Reducerightside(p_g,G_mn,K_fs,ys); 57 57 58 58 % Solve -
issm/trunk/src/m/solutions/ice/diagnostic_core_nonlinear.m
r34 r36 99 99 % and compute modifications to loads from single point constraints. 100 100 101 [K_ff K_fs]= IceReducematrixfromgtof(K_gg,G_mn);101 [K_ff K_fs]=Reducematrixfromgtof(K_gg,G_mn); 102 102 103 103 % Reduce load from g set to f set 104 p_f= IceReducerightside(p_g,G_mn,K_fs,ys);104 p_f=Reducerightside(p_g,G_mn,K_fs,ys); 105 105 106 106 % Solve … … 156 156 [K_gg,p_g]=SystemMatrices(elements,grids,loads,materials,kflag, pflag, sparsity,inputs,analysis_type); 157 157 [K_gg,p_g]=PenaltySystemMatrices(grids,loads,materials,kflag, pflag, sparsity,inputs,analysis_type,K_gg,p_g); 158 [K_ff K_fs]= IceReducematrixfromgtof(K_gg,G_mn);158 [K_ff K_fs]=Reducematrixfromgtof(K_gg,G_mn); 159 159 varargout(1)={K_ff}; 160 160 varargout(2)={K_fs}; -
issm/trunk/src/m/solutions/ice/melting_core.m
r34 r36 44 44 % Reduce stiffness matrix from g set to f set (effectively rooting out the single point constraints), 45 45 % and compute modifications to loads from single point constraints. 46 [K_ff K_fs]= IceReducematrixfromgtof(K_gg,G_mn);46 [K_ff K_fs]=Reducematrixfromgtof(K_gg,G_mn); 47 47 48 48 % Reduce load from g set to f set 49 p_f= IceReducerightside(p_g,G_mn,K_fs,ys);49 p_f=Reducerightside(p_g,G_mn,K_fs,ys); 50 50 51 51 % Solve -
issm/trunk/src/m/solutions/ice/prognostic_core.m
r34 r36 47 47 % Reduce stiffness matrix from g set to f set (effectively rooting out the single point constraints), 48 48 % and compute modifications to loads from single point constraints. 49 [K_ff K_fs]= IceReducematrixfromgtof(K_gg,G_mn);49 [K_ff K_fs]=Reducematrixfromgtof(K_gg,G_mn); 50 50 51 51 % Reduce load from g set to f set 52 p_f= IceReducerightside(p_g,G_mn,K_fs,ys);52 p_f=Reducerightside(p_g,G_mn,K_fs,ys); 53 53 54 54 % Solve -
issm/trunk/src/m/solutions/ice/thermal_core.m
r34 r36 58 58 % Reduce stiffness matrix from g set to f set (effectively rooting out the single point constraints), 59 59 % and compute modifications to loads from single point constraints. 60 [K_ff K_fs]= IceReducematrixfromgtof(K_gg_penalized,G_mn);60 [K_ff K_fs]=Reducematrixfromgtof(K_gg_penalized,G_mn); 61 61 62 62 % Reduce load from g set to f set 63 p_f= IceReducerightside(p_g_penalized,G_mn,K_fs,ys);63 p_f=Reducerightside(p_g_penalized,G_mn,K_fs,ys); 64 64 65 65 % Solve … … 69 69 t_g= Mergesolution_g(t_f,G_mn,ys); 70 70 71 [loads,converged]= IcePenaltyConstraints(loads,grids,materials,params,struct('pressure',pressure, 'dt',dt, 'temperature',t_g));71 [loads,converged]=PenaltyConstraints(loads,grids,materials,params,struct('pressure',pressure, 'dt',dt, 'temperature',t_g)); 72 72 73 73 end
Note:
See TracChangeset
for help on using the changeset viewer.