Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Multizone discrete adjoints for turbomachinery #2317

Closed
wants to merge 35 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
3801e4d
Throw error message in case the multizone discrete adjoint solver wil…
oleburghardt Aug 14, 2024
0e5f95b
Softcode indentifier/index.
oleburghardt Aug 15, 2024
dc38cc3
Add tag type option to build system.
oleburghardt Aug 15, 2024
19a1a70
Add option to use RealReverseTag as AD type.
oleburghardt Aug 25, 2024
36c922e
Temporarily adjust/hardcode type size for memory alignment in vectori…
oleburghardt Aug 25, 2024
84e97f4
added turbo obj funcs
joshkellyjak Aug 29, 2024
e68f844
Merge branch 'develop' into feature_mz_adjoint_for_turbo
joshkellyjak Aug 29, 2024
bb0831d
thems the breaks
joshkellyjak Aug 29, 2024
4327942
Merge branch 'feature_mz_adjoint_for_turbo' of https://github.com/su2…
joshkellyjak Aug 29, 2024
ae68274
Merge branch 'develop' into feature_mz_adjoint_for_turbo
joshkellyjak Aug 30, 2024
905f1e6
Resource releasing
joshkellyjak Aug 30, 2024
da21602
Merge branch 'feature_mz_adjoint_for_turbo' of https://github.com/su2…
joshkellyjak Aug 30, 2024
9f1b07c
Merge remote-tracking branch 'upstream/feature_tag_debug_tape' into f…
joshkellyjak Sep 2, 2024
54515e9
Merge branch 'feature_mz_adjoint_for_turbo' of https://github.com/su2…
joshkellyjak Sep 3, 2024
c002911
Revert "Merge remote-tracking branch 'upstream/feature_tag_debug_tape…
joshkellyjak Sep 3, 2024
5a9773c
formatting
joshkellyjak Sep 4, 2024
6e65dd1
Add config option and indicator for a debug discrete adjoint run.
oleburghardt Sep 24, 2024
82f69e9
Add routines for setting tags to AD structure.
oleburghardt Sep 24, 2024
9de8e93
Add kinds of recording for tag tapes.
oleburghardt Sep 24, 2024
57fbcea
Comment out checks in AD structure whether an identifier is active. T…
oleburghardt Sep 24, 2024
3da17d8
Add first WIP version of the tag debug mode to the (multizone) discre…
oleburghardt Sep 24, 2024
b0e7c86
Fix preaccumulation error in ComputeVorticityAndStrainMag (first debu…
oleburghardt Sep 24, 2024
688797a
Merge branch 'develop' into feature_tag_debug_tape
joshkellyjak Sep 24, 2024
8556c2a
Revert small change (will be added to CoDi soon).
oleburghardt Sep 24, 2024
683de77
Resolves tag errors in turbo mode
joshkellyjak Sep 26, 2024
13ca3f5
Revert "Resolves tag errors in turbo mode"
joshkellyjak Sep 26, 2024
89c95ba
Merge remote-tracking branch 'origin/feature_tag_debug_tape' into fea…
joshkellyjak Sep 26, 2024
e1a04fa
Merge branch 'feature_mz_adjoint_for_turbo' of https://github.com/su2…
joshkellyjak Sep 26, 2024
887e9e6
Resolving tag errors
joshkellyjak Sep 26, 2024
08b7979
Merge branch 'feature_mz_adjoint_for_turbo' of https://github.com/su2…
joshkellyjak Sep 26, 2024
e40f943
Revert "Merge remote-tracking branch 'origin/feature_tag_debug_tape' …
joshkellyjak Sep 27, 2024
a284b6b
Resolved tag tape debugging errors
joshkellyjak Jan 9, 2025
27f790f
Merge remote-tracking branch 'origin/develop' into feature_mz_adjoint…
joshkellyjak Jan 9, 2025
1e7472d
Merge branch 'develop' into feature_mz_adjoint_for_turbo
joshkellyjak Jan 21, 2025
67c032c
Merge branch 'develop' into feature_mz_adjoint_for_turbo
bigfooted Feb 10, 2025
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
Prev Previous commit
Next Next commit
Resource releasing
joshkellyjak committed Aug 30, 2024
commit 905f1e6f1971700073ecd9f0bb31728fc4fa8c15
4 changes: 4 additions & 0 deletions Common/src/CConfig.cpp
Original file line number Diff line number Diff line change
@@ -8266,6 +8266,10 @@ CConfig::~CConfig() {

delete [] nBlades;
delete [] FreeStreamTurboNormal;

delete [] EntropyGeneration;
delete [] TotalPressureLoss;
delete [] KineticEnergyLoss;
}

string CConfig::GetFilename(string filename, const string& ext, int timeIter) const {