Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
LYNX
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Antoine Jacquey
LYNX
Commits
efa61909
Commit
efa61909
authored
Mar 14, 2019
by
Antoine Jacquey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clang-format things.
parent
92be511d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
src/kernels/LynxHeatSources.C
src/kernels/LynxHeatSources.C
+3
-1
src/materials/LynxDeformationBase.C
src/materials/LynxDeformationBase.C
+1
-2
No files found.
src/kernels/LynxHeatSources.C
View file @
efa61909
...
...
@@ -35,7 +35,9 @@ validParams<LynxHeatSources>()
"coeff_shear_heating"
,
0
.
0
,
"The coefficient in front of the shear heating generation."
);
params
.
addCoupledVar
(
"displacements"
,
"The string of displacements suitable for the problem statement"
);
params
.
addCoupledVar
(
"inelastic_heat"
,
"The auxiliary variable holding the inelastic heat value for running in a subApp."
);
params
.
addCoupledVar
(
"inelastic_heat"
,
"The auxiliary variable holding the inelastic heat value for running in a subApp."
);
return
params
;
}
...
...
src/materials/LynxDeformationBase.C
View file @
efa61909
...
...
@@ -353,8 +353,7 @@ void
LynxDeformationBase
::
initializeQpDeformation
()
{
// Initialze elastic strain
_elastic_strain
[
_qp
]
=
spinRotation
(
_elastic_strain_old
[
_qp
])
+
_strain_increment
[
_qp
];
_elastic_strain
[
_qp
]
=
spinRotation
(
_elastic_strain_old
[
_qp
])
+
_strain_increment
[
_qp
];
// Initialize inelastic increment
_viscous_strain_incr
[
_qp
].
zero
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment