-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89fdc67
commit f786330
Showing
2 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Case configuration for an acoustics simulation. | ||
The following sections define: | ||
- General simulation settings | ||
- Mesh configurations details | ||
- Finite Element Method (FEM) configurations | ||
- Post-processing options | ||
--> | ||
<case codename="Acoustics" xml:lang="en" codeversion="1.0"> | ||
|
||
<!-- | ||
Arcane-specific settings: | ||
- title: The name or description of the case. | ||
- timeloop: Defines the time-stepping loop for the simulation. | ||
--> | ||
<arcane> | ||
<title>Submarine Toy Case</title> | ||
<timeloop>AcousticsLoop</timeloop> | ||
</arcane> | ||
|
||
|
||
<!-- | ||
Mesh configurations: | ||
- filename: Path to the mesh file used in the simulation. | ||
--> | ||
<meshes> | ||
<mesh> | ||
<filename>sub.msh</filename> | ||
</mesh> | ||
</meshes> | ||
|
||
|
||
<!-- | ||
FEM (Finite Element Method) settings: | ||
- kc2: Coefficient used in the FEM calculations. | ||
- neumann-boundary-condition: Defines boundary conditions for the simulation. | ||
- linear-system: Specifies the linear system solver to use. | ||
- result-file: File for validation (optional) | ||
--> | ||
<fem> | ||
<kc2>.11e1</kc2> | ||
<neumann-boundary-condition> | ||
<surface>inner1</surface> | ||
<value>1.0</value> | ||
</neumann-boundary-condition> | ||
<linear-system> | ||
<solver-backend>hypre</solver-backend> | ||
<solver-method>bicgstab</solver-method> | ||
<epsilon>1e-8</epsilon> | ||
</linear-system> | ||
<result-file>sub_2D.txt</result-file> | ||
</fem> | ||
|
||
<!-- | ||
Post-processing settings: | ||
- output-period: Defines how often output should be generated. | ||
- output: Specifies which variables are to be outputted. | ||
--> | ||
<arcane-post-processing> | ||
<output-period>1</output-period> | ||
<output> | ||
<variable>U</variable> | ||
</output> | ||
</arcane-post-processing> | ||
|
||
</case> |