Changeset 36


Ignore:
Timestamp:
04/24/09 13:45:12 (16 years ago)
Author:
Mathieu Morlighem
Message:

some fixing

Location:
issm/trunk/src/m/solutions/ice
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/solutions/ice/CreateFemModel.m

    r1 r36  
    2626%generate grid sets and reduce yg to ys from g-set to s-set.
    2727BuildGridSets(grids,constraints); ys=Reducevector_g(yg);
    28        
    29 Gmn = IceNormalizeconstraints(Rmg);
     28
     29%buile Gmn
     30Gmn=Normalizeconstraints(Rmg);
    3031
    3132%recover dof number
  • issm/trunk/src/m/solutions/ice/diagnostic_core_linear.m

    r34 r36  
    5151% Reduce stiffness matrix from g set to f set (effectively rooting out the single point constraints),
    5252% 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);
    5454
    5555% Reduce load from g set to f set
    56 p_f=IceReducerightside(p_g,G_mn,K_fs,ys);
     56p_f=Reducerightside(p_g,G_mn,K_fs,ys);
    5757
    5858% Solve
  • issm/trunk/src/m/solutions/ice/diagnostic_core_nonlinear.m

    r34 r36  
    9999        % and compute modifications to loads from single point constraints.
    100100       
    101         [K_ff K_fs]=IceReducematrixfromgtof(K_gg,G_mn);
     101        [K_ff K_fs]=Reducematrixfromgtof(K_gg,G_mn);
    102102
    103103        % 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);
    105105
    106106        % Solve
     
    156156        [K_gg,p_g]=SystemMatrices(elements,grids,loads,materials,kflag, pflag, sparsity,inputs,analysis_type);
    157157        [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);
    159159        varargout(1)={K_ff};
    160160        varargout(2)={K_fs};
  • issm/trunk/src/m/solutions/ice/melting_core.m

    r34 r36  
    4444% Reduce stiffness matrix from g set to f set (effectively rooting out the single point constraints),
    4545% 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);
    4747
    4848% Reduce load from g set to f set
    49 p_f=IceReducerightside(p_g,G_mn,K_fs,ys);
     49p_f=Reducerightside(p_g,G_mn,K_fs,ys);
    5050
    5151% Solve
  • issm/trunk/src/m/solutions/ice/prognostic_core.m

    r34 r36  
    4747% Reduce stiffness matrix from g set to f set (effectively rooting out the single point constraints),
    4848% 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);
    5050
    5151% Reduce load from g set to f set
    52 p_f=IceReducerightside(p_g,G_mn,K_fs,ys);
     52p_f=Reducerightside(p_g,G_mn,K_fs,ys);
    5353
    5454% Solve
  • issm/trunk/src/m/solutions/ice/thermal_core.m

    r34 r36  
    5858        % Reduce stiffness matrix from g set to f set (effectively rooting out the single point constraints),
    5959        % 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);
    6161
    6262        % 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);
    6464       
    6565        % Solve
     
    6969        t_g= Mergesolution_g(t_f,G_mn,ys);
    7070
    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));
    7272
    7373end
Note: See TracChangeset for help on using the changeset viewer.