Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
exa
docs
Commits
78a46a9e
Commit
78a46a9e
authored
2 years ago
by
Roberto Porcu
Browse files
Options
Downloads
Patches
Plain Diff
fix solids inputs definition
parent
d99a03e4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/source/inputs/InputsProblemDefinition.rst
+49
-61
49 additions, 61 deletions
docs/source/inputs/InputsProblemDefinition.rst
with
49 additions
and
61 deletions
docs/source/inputs/InputsProblemDefinition.rst
+
49
−
61
View file @
78a46a9e
...
...
@@ -303,59 +303,53 @@ Solids model settings
Enabling the SOLIDS solver and specifying options common to both DEM and PIC
models. The following inputs must be preceded by the "solids." root
+------------------------------+-------------------------------------------------------------+----------+----------+
| | Description | Type | Default |
+==============================+=============================================================+==========+==========+
| types | Specified name(s) of the SOLIDS types or None to disable | String | None |
| | the SOLIDS solver. The user defined names are used to | | |
| | specify DEM and/or PIC model inputs. | | |
+------------------------------+-------------------------------------------------------------+----------+----------+
| newton_solver.absolute_tol | Define absolute tolerance for Damped-Newton solver | Real | 1.e-6 |
+------------------------------+-------------------------------------------------------------+----------+----------+
| newton_solver.relative_tol | Define relative tolerance for Damped-Newton solver | Real | 1.e-6 |
+------------------------------+-------------------------------------------------------------+----------+----------+
| newton_solver.max_iterations | Define max number of iterations for Damped-Newton solver | int | 100 |
+------------------------------+-------------------------------------------------------------+----------+----------+
| plot_regions | This input helps setting which regions to use for filtering | String | None |
| | solids data by plotting only those particles that reside | | |
| | in the specified regions | | |
+------------------------------+-------------------------------------------------------------+----------+----------+
The following inputs define the single solids properties.
+---------------------------------------------------+-----------------------------------------+----------+-----------+
| | Description | Type | Default |
+===================================================+=========================================+==========+===========+
| [solid0].molecular_weight | Value of constant solid molecular | Real | 0 |
| | weight | | |
+---------------------------------------------------+-----------------------------------------+----------+-----------+
| [solid0].specific_heat | Specify which specific heat model to | String | None |
| | use for solid. Available options | | |
| | include: | | |
| | | | |
| | * 'constant' for constant specific heat | | |
| | model | | |
+---------------------------------------------------+-----------------------------------------+----------+-----------+
| [solid0].specific_heat.constant | Value of species molecular weight. | Real | 0 |
| | [required if fluid.specific_heat = | | |
| | 'constant']. | | |
+---------------------------------------------------+-----------------------------------------+----------+-----------+
| [solid0].reference_temperature | Value of the reference temperature used | Real | 0 |
| | for specific enthalpy | | |
+---------------------------------------------------+-----------------------------------------+----------+-----------+
| [solid0].species | Specify which species can constitute | String | None |
| | the fluid phase [defined species must | | |
| | be a subset of the species.solve | | |
| | arguments]. | | |
+---------------------------------------------------+-----------------------------------------+----------+-----------+
| [solid0].species.[species0].specific_heat | Specify species0 specific heat if it is | Real | 0 |
| | different than the value specified in | | |
| | the species model settings | | |
+---------------------------------------------------+-----------------------------------------+----------+-----------+
| [solid0].species.[species0].enthalpy_of_formation | Specify species0 enthalpy of formation | Real | 0 |
| | if it is different than the value | | |
| | specified in the species model settings | | |
+---------------------------------------------------+-----------------------------------------+----------+-----------+
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| | Description | Type | Default |
+==========================================+=============================================================+==========+==========+
| types | Specified name(s) of the SOLIDS types or None to disable | String | None |
| | the SOLIDS solver. The user defined names are used to | | |
| | specify DEM and/or PIC model inputs. | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| newton_solver.absolute_tol | Define absolute tolerance for Damped-Newton solver | Real | 1.e-6 |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| newton_solver.relative_tol | Define relative tolerance for Damped-Newton solver | Real | 1.e-6 |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| newton_solver.max_iterations | Define max number of iterations for Damped-Newton solver | int | 100 |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| plot_regions | This input helps setting which regions to use for filtering | String | None |
| | solids data by plotting only those particles that reside | | |
| | in the specified regions | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| molecular_weight | Value of constant solid molecular | Real | 0 |
| | weight | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| specific_heat | Specify which specific heat model to | String | None |
| | use for solid. Available options | | |
| | include: | | |
| | | | |
| | * 'constant' for constant specific heat | | |
| | model | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| specific_heat.constant | Value of species molecular weight. | Real | 0 |
| | [required if fluid.specific_heat = | | |
| | 'constant']. | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| reference_temperature | Value of the reference temperature used | Real | 0 |
| | for specific enthalpy | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| species | Specify which species can constitute | String | None |
| | the fluid phase [defined species must | | |
| | be a subset of the species.solve | | |
| | arguments]. | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| species.[species0].specific_heat | Specify species0 specific heat if it is | Real | 0 |
| | different than the value specified in | | |
| | the species model settings | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
| species.[species0].enthalpy_of_formation | Specify species0 enthalpy of formation | Real | 0 |
| | if it is different than the value | | |
| | specified in the species model settings | | |
+------------------------------------------+-------------------------------------------------------------+----------+----------+
Below is an example for specifying the solids solver model options.
...
...
@@ -363,15 +357,9 @@ Below is an example for specifying the solids solver model options.
solids.types = mysolid
mysolid.molecular_weight = constant
mysolid.molecular_weight.constant = 18.01528
solids.reference_temperature = 298.15
mysolid.reference_temperature = 298.15
mysolid.specific_heat = constant
mysolid.specific_heat.constant = 4186
mysolid.species = H2O
solids.species = H2O
# this is optional. it has to be specified in case it is different than
# the value passed in the species section
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment