Skip to content

Commit c51695f

Browse files
authored
Merge pull request #63 from su2code/develop
Develop
2 parents 80d6bbf + 1950126 commit c51695f

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

_layouts/docs_v7.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<h1>{{ page.title }}</h1>
1313
<div id="markdown-content-container">{{ content }}</div>
1414
<hr>
15-
{% unless true %}
15+
{% unless page.disable_comments %}
1616
<script>
1717

1818
/**

_layouts/tutorials.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h1>{{ page.title }}</h1>
108108

109109
<div id="markdown-content-container">{{ content }}</div>
110110
<hr>
111-
{% unless true %}
111+
{% unless page.disable_comments %}
112112
<script>
113113

114114
/**

_layouts/vandv.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<h1>{{ page.title }}</h1>
1313
<div id="markdown-content-container">{{ content }}</div>
1414
<hr>
15-
{% unless true %}
15+
{% unless page.disable_comments %}
1616
<script>
1717

1818
/**

_tutorials/design_features/Multi_Objective_Shape_Design/Multi_Objective_Shape_Design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Upon completing this tutorial, the user will be familiar with setting up and run
1919
- Constraints as penalty functions
2020
- Combining objectives in the adjoint evaluation of the gradient to reduce computational cost.
2121

22-
The intent of this tutorial is to introduce multi-objective, single-point optimization and explain how this can be implemented using SU2. This tutorial uses the same geometry and flow conditions as described in the inviscid supersonc wedge tutorial.
22+
The intent of this tutorial is to introduce multi-objective, single-point optimization and explain how this can be implemented using SU2. This tutorial uses the same geometry and flow conditions as described in the inviscid supersonic wedge tutorial.
2323

2424

2525
The capabilities of combining multiple objectives and incorporating penalty functions into the adjoint formulation in SU2 are discussed further in section 3.4 of [this work](https://purl.stanford.edu/mm280hp6972).

_tutorials/multiphysics/Unsteady_FSI_Python/Dynamic_FSI_Python.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,12 @@ The most important interface configuration keywords are:
267267

268268
* __CFD_CONFIG_FILE_NAME__ (string): Path to the fluid cfg file
269269

270-
* __CSD_SOLVER__ (string): Behaviour of the structural solver to be used. AEROELASTIC if the structural equation of motions must be solved, IMPOSED if a movement of the structure is imposed
271-
270+
* __CSD_SOLVER__ (string): Structural solver to be used. As of now, only the native modal solver is used, activated with the keyword NATIVE. However, other solvers can easily be added
271+
272+
* __IMPOSED_MOTION__ (string): YES or NO. Specifies wether the structural solver will integrate the structural equations or just impose a specific movement. In the latter case, forces are not mapped onto the structure, as it would not be required.
273+
274+
* __MAPPING_MODES__ (string): YES or NO. Special feature that can only be used with the native solver. Used to extract the mapped modes onto the aerodynamic mesh.
275+
272276
* __CSD_CONFIG_FILE_NAME__ (string): Path to the solid cfg file
273277

274278
* __RESTART_SOL__ (string): YES or NO
@@ -403,7 +407,7 @@ $$^1$$ Sanchez, R. (2018), A coupled adjoint method for optimal design in fluid-
403407

404408
### Attribution
405409

406-
Coming soon...
410+
Fonzi, N., Cavalieri, V., De Gaspari, A., & Ricci, S. (2021). Advances of the Python-based Fluid-Structure Interaction capabilities included in SU2. arXiv preprint arXiv:2109.12332.
407411

408412
<dl>
409413
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>

0 commit comments

Comments
 (0)