Skip to content

Commit 89a559a

Browse files
author
rois1995
committed
- Try fixing output bug again
1 parent 32a6eea commit 89a559a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SU2_CFD/src/output/CFlowOutput.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,7 @@ void CFlowOutput::LoadVolumeDataScalar(const CConfig* config, const CSolver* con
15051505
const unsigned long iPoint) {
15061506
const auto* turb_solver = solver[TURB_SOL];
15071507
const auto* trans_solver = solver[TRANS_SOL];
1508-
const auto* Node_Flow = solver[FLOW_SOL]->GetNodes();
1508+
const auto* Node_Flow = su2staticcast_p<CFlowVariable*>(solver[FLOW_SOL]->GetNodes());
15091509
const auto* Node_Turb = (config->GetKind_Turb_Model() != TURB_MODEL::NONE) ? turb_solver->GetNodes() : nullptr;
15101510
const auto* Node_Trans = (config->GetKind_Trans_Model() != TURB_TRANS_MODEL::NONE) ? trans_solver->GetNodes() : nullptr;
15111511
const auto* Node_Geo = geometry->nodes;

0 commit comments

Comments
 (0)