Changeset 434 for issm/trunk/src/c/parallel/OutputDiagnostic.cpp
- Timestamp:
- 05/14/09 22:33:13 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/parallel/OutputDiagnostic.cpp
r209 r434 11 11 #include "../objects/objects.h" 12 12 13 void OutputDiagnostic(Vec u_g,Vec p artition,char* filename,NodeSets* nodesets,char* analysis_type){13 void OutputDiagnostic(Vec u_g,Vec p_g, FemModel* femmodels,char* filename){ 14 14 15 15 int i; … … 19 19 FILE* fid=NULL; 20 20 21 /*intermediary: */ 22 FemModel femmodel; 23 NodeSets* nodesets=NULL; 24 Vec partition=NULL; 25 char* analysis_type="diagnostic"; 26 21 27 /* standard output: */ 22 28 Vec partition_shifted=NULL; 23 29 double* serial_partition=NULL; 24 int analysis_size;25 30 26 31 double* serial_ug=NULL; … … 28 33 int gsize; 29 34 int nods; 35 36 /*Recover diagnostic horiz femmodel: */ 37 femmodel=femmodels[0]; 38 partition=femmodel.partition; 39 nodesets=femmodel.nodesets; 30 40 31 41 /*serialize outputs: */
Note:
See TracChangeset
for help on using the changeset viewer.