-
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.
Merge pull request #16 from Flash-X/adubey/july2024
Adubey/july2024
- Loading branch information
Showing
10 changed files
with
273 additions
and
15 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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,26 @@ | ||
.. container:: center | ||
|
||
:: | ||
|
||
SPECIES HE4 | ||
SPECIES O16 | ||
|
||
The properties of the gases are initialized in the file | ||
``Simulation/Simulation_initSpecies``\ ``.F90``, for example | ||
|
||
.. container:: center | ||
|
||
:: | ||
|
||
subroutine Simulation_initSpecies() | ||
use Multispecies_interface, ONLY : Multispecies_setProperty | ||
implicit none | ||
#include "Simulation.h" | ||
#include "Multispecies.h" | ||
call Multispecies_setProperty(HE4_SPEC, A, 4.) | ||
call Multispecies_setProperty(HE4_SPEC, Z, 2.) | ||
call Multispecies_setProperty(HE4_SPEC, GAMMA, 1.66666666667e0) | ||
call Multispecies_setProperty(O16_SPEC, A, 16.0) | ||
call Multispecies_setProperty(O16_SPEC, Z, 8.0) | ||
call Multispecies_setProperty(O16_SPEC, GAMMA, 1.4) | ||
end subroutine Simulation_initSpecies |
This file was deleted.
Oops, something went wrong.