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/diagnostic_core.cpp

    r6323 r6412  
    5050        if(ishutter){
    5151                       
    52                 ISSMPRINTF(VerboseControl(),"%s\n","   computing hutter velocities");
     52                _printf_(VerboseControl(),"%s\n","   computing hutter velocities");
    5353
    5454                //Take the last velocity into account so that the velocity on the MacAyeal domain is not zero
     
    6363        if (ismacayealpattyn^isstokes){
    6464               
    65                 ISSMPRINTF(VerboseControl(),"%s\n","   computing velocities");
     65                _printf_(VerboseControl(),"%s\n","   computing velocities");
    6666                femmodel->SetCurrentConfiguration(DiagnosticHorizAnalysisEnum);
    6767                solver_diagnostic_nonlinear(femmodel,modify_loads);
     
    7070        if (ismacayealpattyn && isstokes){
    7171
    72                 ISSMPRINTF(VerboseControl(),"%s\n","   computing coupling macayealpattyn and stokes velocities and pressure ");
     72                _printf_(VerboseControl(),"%s\n","   computing coupling macayealpattyn and stokes velocities and pressure ");
    7373                solver_stokescoupling_nonlinear(femmodel,conserve_loads);
    7474        }
     
    7676        if (dim==3 & (ishutter || ismacayealpattyn)){
    7777
    78                 ISSMPRINTF(VerboseControl(),"%s\n","   computing vertical velocities");
     78                _printf_(VerboseControl(),"%s\n","   computing vertical velocities");
    7979                femmodel->SetCurrentConfiguration(DiagnosticVertAnalysisEnum);
    8080                solver_linear(femmodel);
     
    8383
    8484        if(solution_type==DiagnosticSolutionEnum && !control_analysis){
    85                 ISSMPRINTF(VerboseControl(),"   saving results\n");
     85                _printf_(VerboseControl(),"   saving results\n");
    8686                InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum);
    8787                InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum);
Note: See TracChangeset for help on using the changeset viewer.