Ignore:
Timestamp:
06/18/10 19:24:59 (15 years ago)
Author:
Eric.Larour
Message:

Keep simplifying solutions.
New convergence module at the input level, instead at the solution level, when solution vectors are not
available anymore.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/modules/OutputResultsx/OutputResultsx.cpp

    r4042 r4055  
    1515#include "../../objects/objects.h"
    1616               
    17 void OutputResults(DataSet* elements, DataSet* loads, DataSet* nodes, DataSet* vertices, DataSet* materials, Parameters* parameters, char* filename){
     17void OutputResults(DataSet* elements, DataSet* loads, DataSet* nodes, DataSet* vertices, DataSet* materials, Parameters* parameters){
    1818
    1919        int i;
    2020
    2121        Patch* patch=NULL;
     22        char*  filename=NULL;
    2223
    2324        int solutiontype;
     
    3738        //Recover solutiontype which will be output to disk:
    3839        parameters->FindParam(&solutiontype,SolutionTypeEnum);
     40        parameters->FindParam(&filename,OutputFileNameEnum);
    3941
    4042        //Process results to be output in the correct units
     
    104106        /*Free ressources:*/
    105107        delete patch;
     108        xfree((void**)&filename);
    106109
    107110}
Note: See TracChangeset for help on using the changeset viewer.