Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DOUAR WSMP
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
HUGG
DOUAR WSMP
Commits
4c2c4a84
Commit
4c2c4a84
authored
12 years ago
by
Dave Whipp
Browse files
Options
Downloads
Patches
Plain Diff
Fixed even more typos
parent
164b80d8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/vrm.f90
+9
-8
9 additions, 8 deletions
src/vrm.f90
with
9 additions
and
8 deletions
src/vrm.f90
+
9
−
8
View file @
4c2c4a84
...
@@ -41,7 +41,8 @@ type (parameters) params
...
@@ -41,7 +41,8 @@ type (parameters) params
double precision
::
J2d
,
J3d
,
viscosity
,
pressure
,
compressibility
,
straintot
double precision
::
J2d
,
J3d
,
viscosity
,
pressure
,
compressibility
,
straintot
double precision
::
friction_angle
double precision
::
friction_angle
character
(
len
=
8
)
plasticity_type
character
(
len
=
8
)
plasticity_type
character
(
len
=
12
)
plasticity_ss_type
character
(
len
=
12
)
plasticity_ss_type_coh
character
(
len
=
12
)
plasticity_ss_type_phi
double precision
plasticity_parameters
(
9
)
double precision
plasticity_parameters
(
9
)
logical
::
is_plastic
,
flag_vrm_pb
logical
::
is_plastic
,
flag_vrm_pb
...
@@ -369,8 +370,8 @@ logical :: flag_vrm_pb
...
@@ -369,8 +370,8 @@ logical :: flag_vrm_pb
!------------------------------------------------------------------------------|
!------------------------------------------------------------------------------|
double precision
::
strain_soft_phi_in
,
strain_soft_phi_out
,
strain_soft_phi
double precision
::
strain_soft_phi_in
,
strain_soft_phi_out
,
strain_soft_phi
double precision
::
strain_soft_c_in
,
strain_soft_c_out
,
strain_soft_
phi
double precision
::
strain_soft_c_in
,
strain_soft_c_out
,
strain_soft_
c
double precision
::
fact
double precision
::
fact
,
strain_soft_ref
! Set strain softening onset/termination and min values
! Set strain softening onset/termination and min values
strain_soft_c_in
=
plasticity_parameters
(
6
)
strain_soft_c_in
=
plasticity_parameters
(
6
)
...
@@ -394,8 +395,8 @@ if (strain_soft_c_in.gt.0.d0) then
...
@@ -394,8 +395,8 @@ if (strain_soft_c_in.gt.0.d0) then
flag_vrm_pb
=
.true.
flag_vrm_pb
=
.true.
end
select
ss_type_c
end
select
ss_type_c
! Soften cohesion if beyond onset value
! Soften cohesion if beyond onset value
if
(
strain_soft_ref
.gt.
strain_soft_in
_c
)
then
if
(
strain_soft_ref
.gt.
strain_soft_
c_
in
)
then
fact
=
(
strain_soft_ref
-
strain_soft_in
_c
)/(
strain_soft_out
_c
-
strain_soft_in
_c
)
fact
=
(
strain_soft_ref
-
strain_soft_
c_
in
)/(
strain_soft_
c_
out
-
strain_soft_
c_
in
)
fact
=
min
(
fact
,
1.d0
)
fact
=
min
(
fact
,
1.d0
)
c
=
c
+
(
strain_soft_c
-
c
)
*
fact
c
=
c
+
(
strain_soft_c
-
c
)
*
fact
endif
endif
...
@@ -415,8 +416,8 @@ if (strain_soft_phi_in.gt.0.d0) then
...
@@ -415,8 +416,8 @@ if (strain_soft_phi_in.gt.0.d0) then
flag_vrm_pb
=
.true.
flag_vrm_pb
=
.true.
end
select
ss_type_phi
end
select
ss_type_phi
! Soften phi if beyond onset value
! Soften phi if beyond onset value
if
(
strain_soft_ref
.gt.
strain_soft_
in_
phi
)
then
if
(
strain_soft_ref
.gt.
strain_soft_phi
_in
)
then
fact
=
(
strain_soft_ref
-
strain_soft_
in_
phi
)/(
strain_soft_
out_
phi
-
strain_soft_
in_
phi
)
fact
=
(
strain_soft_ref
-
strain_soft_phi
_in
)/(
strain_soft_phi
_out
-
strain_soft_phi
_in
)
fact
=
min
(
fact
,
1.d0
)
fact
=
min
(
fact
,
1.d0
)
phi
=
phi
+
(
strain_soft_phi
-
phi
)
*
fact
phi
=
phi
+
(
strain_soft_phi
-
phi
)
*
fact
endif
endif
...
@@ -425,4 +426,4 @@ endif
...
@@ -425,4 +426,4 @@ endif
end
subroutine
strain_soften
end
subroutine
strain_soften
!-------------------------------------------------------------------------------
!-------------------------------------------------------------------------------
!-------------------------------------------------------------------------------
!-------------------------------------------------------------------------------
\ No newline at end of file
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