Changeset 9030


Ignore:
Timestamp:
07/18/11 08:09:41 (14 years ago)
Author:
seroussi
Message:

minor wrong verbose

File:
1 edited

Legend:

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

    r8926 r9030  
    4949        if(ishutter){
    5050                       
    51                 _printf_(VerboseControl(),"%s\n","   computing hutter velocities");
     51                _printf_(VerboseSolution(),"%s\n","   computing hutter velocities");
    5252
    5353                //Take the last velocity into account so that the velocity on the MacAyeal domain is not zero
     
    6262        if (ismacayealpattyn ^ isstokes){ // ^ = xor
    6363               
    64                 _printf_(VerboseControl(),"%s\n","   computing velocities");
     64                _printf_(VerboseSolution(),"%s\n","   computing velocities");
    6565                femmodel->SetCurrentConfiguration(DiagnosticHorizAnalysisEnum);
    6666                solver_nonlinear(femmodel,modify_loads);
     
    6969        if (ismacayealpattyn && isstokes){
    7070
    71                 _printf_(VerboseControl(),"%s\n","   computing coupling macayealpattyn and stokes velocities and pressure ");
     71                _printf_(VerboseSolution(),"%s\n","   computing coupling macayealpattyn and stokes velocities and pressure ");
    7272                solver_stokescoupling_nonlinear(femmodel,conserve_loads);
    7373        }
     
    7575        if (dim==3 & (ishutter || ismacayealpattyn)){
    7676
    77                 _printf_(VerboseControl(),"%s\n","   computing vertical velocities");
     77                _printf_(VerboseSolution(),"%s\n","   computing vertical velocities");
    7878                femmodel->SetCurrentConfiguration(DiagnosticVertAnalysisEnum);
    7979                solver_linear(femmodel);
     
    8282
    8383        if(solution_type==DiagnosticSolutionEnum && !control_analysis){
    84                 _printf_(VerboseControl(),"   saving results\n");
     84                _printf_(VerboseSolution(),"   saving results\n");
    8585                InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum);
    8686                InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum);
Note: See TracChangeset for help on using the changeset viewer.