Ignore:
Timestamp:
10/25/10 08:57:04 (15 years ago)
Author:
Mathieu Morlighem
Message:

moved ISSMERROR to _error_, ISSMASSERT to _assert_ and ISSMPRINTF to _printf_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/solutions/steadystate_core.cpp

    r6323 r6412  
    3232        for(;;){
    3333       
    34                 ISSMPRINTF(VerboseSolution(),"%s%i\n","   computing temperature and velocity for step: ",step);
     34                _printf_(VerboseSolution(),"%s%i\n","   computing temperature and velocity for step: ",step);
    3535                thermal_core(femmodel);
    3636
    37                 ISSMPRINTF(VerboseSolution(),"%s\n","   computing new velocity");
     37                _printf_(VerboseSolution(),"%s\n","   computing new velocity");
    3838                diagnostic_core(femmodel);
    3939
    4040                if (step>1){
    41                         ISSMPRINTF(VerboseSolution(),"%s\n","   checking velocity, temperature and pressure convergence");
     41                        _printf_(VerboseSolution(),"%s\n","   checking velocity, temperature and pressure convergence");
    4242                        if(steadystateconvergence(femmodel)) break;
    4343                }
    4444               
    45                 ISSMPRINTF(VerboseSolution(),"%s\n","   saving velocity, temperature and pressure to check for convergence at next step");
     45                _printf_(VerboseSolution(),"%s\n","   saving velocity, temperature and pressure to check for convergence at next step");
    4646                InputDuplicatex(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum,VxOldEnum);
    4747                InputDuplicatex(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum,VyOldEnum);
     
    5555       
    5656        if(solution_type==SteadystateSolutionEnum && !control_analysis){
    57                 ISSMPRINTF(VerboseSolution(),"   saving results\n");
     57                _printf_(VerboseSolution(),"   saving results\n");
    5858                InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum);
    5959                InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum);
Note: See TracChangeset for help on using the changeset viewer.