Ignore:
Timestamp:
11/29/11 16:52:22 (13 years ago)
Author:
Mathieu Morlighem
Message:

removed all PatchToVec not needed anymore as default is md.settings.results_as_patches = 0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test1102.m

    r9877 r10976  
    5252
    5353        %Plot the results and save them
    54         vx=PatchToVec(md.results.DiagnosticSolution.Vx);
    55         vy=PatchToVec(md.results.DiagnosticSolution.Vy);
    56         vz=PatchToVec(md.results.DiagnosticSolution.Vz);
    57         pressure=PatchToVec(md.results.DiagnosticSolution.Pressure);
     54        vx=(md.results.DiagnosticSolution.Vx);
     55        vy=(md.results.DiagnosticSolution.Vy);
     56        vz=(md.results.DiagnosticSolution.Vz);
     57        pressure=(md.results.DiagnosticSolution.Pressure);
    5858        results{i}=md.results.DiagnosticSolution;
    5959        minvx(i)=min(vx(end-md.mesh.numberofvertices2d+1:end));
     
    140140        result=results{i};
    141141        field_values={field_values{:},...
    142                 PatchToVec(result.Vx),...
    143                 PatchToVec(result.Vy),...
    144                 PatchToVec(result.Vz),...
     142                (result.Vx),...
     143                (result.Vy),...
     144                (result.Vz),...
    145145                };
    146146end
Note: See TracChangeset for help on using the changeset viewer.