@@ -132,10 +132,9 @@ void CHeatOutput::SetVolumeOutputFields(CConfig *config){
132132 AddVolumeOutput (" RES_TEMPERATURE" , " Residual_Temperature" , " RESIDUAL" , " Residual of the temperature" );
133133
134134 // Mesh quality metrics, computed in CPhysicalGeometry::ComputeMeshQualityStatistics.
135- // WRT_MESH_QUALITY= YES has to be set, otherwise the memory holding the data is freed.
136- AddVolumeOutput (" ORTHOGONALITY" , " Orthogonality" , " MESH_QUALITY" , " Orthogonality, additionally set \" WRT_MESH_QUALITY= YES\" " );
137- AddVolumeOutput (" ASPECT_RATIO" , " Aspect_Ratio" , " MESH_QUALITY" , " Aspect ratio, additionally set \" WRT_MESH_QUALITY= YES\" " );
138- AddVolumeOutput (" VOLUME_RATIO" , " Volume_Ratio" , " MESH_QUALITY" , " Volume Ratio, additionally set \" WRT_MESH_QUALITY= YES\" " );
135+ AddVolumeOutput (" ORTHOGONALITY" , " Orthogonality" , " MESH_QUALITY" , " Orthogonality Angle (deg.)" );
136+ AddVolumeOutput (" ASPECT_RATIO" , " Aspect_Ratio" , " MESH_QUALITY" , " CV Face Area Aspect Ratio" );
137+ AddVolumeOutput (" VOLUME_RATIO" , " Volume_Ratio" , " MESH_QUALITY" , " CV Sub-Volume Ratio" );
139138
140139}
141140
@@ -160,8 +159,8 @@ void CHeatOutput::LoadVolumeData(CConfig *config, CGeometry *geometry, CSolver *
160159 // Mesh quality metrics
161160 if (config->GetWrt_MeshQuality ()) {
162161 SetVolumeOutputValue (" ORTHOGONALITY" , iPoint, geometry->Orthogonality [iPoint]);
163- SetVolumeOutputValue (" ASPECT_RATIO" , iPoint, geometry->Aspect_Ratio [iPoint]);
164- SetVolumeOutputValue (" VOLUME_RATIO" , iPoint, geometry->Volume_Ratio [iPoint]);
162+ SetVolumeOutputValue (" ASPECT_RATIO" , iPoint, geometry->Aspect_Ratio [iPoint]);
163+ SetVolumeOutputValue (" VOLUME_RATIO" , iPoint, geometry->Volume_Ratio [iPoint]);
165164 }
166165
167166}
0 commit comments