Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
4d3ef7f
Fix: Making Custom Objective Function work with shape_optimization.py…
ErcanUmut60 Oct 10, 2025
32bc8b5
Update CFlowOutput.cpp
ErcanUmut60 Oct 10, 2025
f6e3a44
CFlowOutput.cpp is updated so updateHistoryMap.py can read custom obj…
ErcanUmut60 Oct 17, 2025
51e495d
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
bigfooted Oct 22, 2025
5baca6b
Update updateHistoryMap.py
ErcanUmut60 Oct 23, 2025
6b6a86b
Update SU2_CFD/src/output/CFlowOutput.cpp
pcarruscag Oct 23, 2025
69379cc
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
bigfooted Oct 24, 2025
12dd862
Update SU2_CFD/src/output/CFlowOutput.cpp
pcarruscag Oct 26, 2025
331a27c
Apply suggestions from code review
pcarruscag Oct 26, 2025
919787b
style: apply black formatting
ErcanUmut60 Oct 30, 2025
325d6f1
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
pcarruscag Oct 30, 2025
b5abf98
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
ErcanUmut60 Nov 2, 2025
ee9c1ac
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
bigfooted Nov 18, 2025
1cdcc3d
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
ErcanUmut60 Nov 25, 2025
838b791
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
bigfooted Nov 25, 2025
836f1d6
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
ErcanUmut60 Dec 19, 2025
cd7c6ba
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
bigfooted Dec 27, 2025
0f985f5
Merge branch 'develop' into fix_unsteady_adjoint_custom_objfunc
bigfooted Jan 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion SU2_CFD/src/output/CFlowOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1719,7 +1719,9 @@ void CFlowOutput::AddAerodynamicCoefficients(const CConfig* config) {

/// DESCRIPTION: Angle of attack
AddHistoryOutput("AOA", "AoA", ScreenOutputFormat::FIXED, "AOA", "Angle of attack");


// CUSTOM_OBJFUNC is added here so historyMap.py knows how to get its value, the actual output is COMBO.
if (false) AddHistoryOutput("CUSTOM_OBJFUNC", "ComboObj", ScreenOutputFormat::SCIENTIFIC, "COMBO", "Custom obj. function value.", HistoryFieldType::COEFFICIENT);
AddHistoryOutput("COMBO", "ComboObj", ScreenOutputFormat::SCIENTIFIC, "COMBO", "Combined obj. function value.", HistoryFieldType::COEFFICIENT);
}

Expand Down
Loading