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
e11db73f
Commit
e11db73f
authored
15 years ago
by
Dave Whipp
Browse files
Options
Downloads
Patches
Plain Diff
added read in of eviscosity and is_plastic
parent
7a36e914
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/define_ov.f90
+4
-5
4 additions, 5 deletions
src/define_ov.f90
with
4 additions
and
5 deletions
src/define_ov.f90
+
4
−
5
View file @
e11db73f
...
...
@@ -49,7 +49,7 @@ type (thread) threadinfo
integer
iproc
,
nproc
,
err
,
ierr
,
levelv
integer
nface
,
nlsf
,
i
,
j
,
k
,
np
,
kfix
double precision
s
,
e2d
,
xlsf
,
crit
double precision
s
,
e2d
,
xlsf
,
crit
,
wpreiso
,
evisc
,
is_plas
integer
ioctree_number_of_elements
external
ioctree_number_of_elements
double precision
current_time
,
activation_time
...
...
@@ -94,7 +94,6 @@ if (params%irestart.eq.0) then
allocate
(
ov
%
unode
(
ov
%
nnode
),
stat
=
threadinfo
%
err
)
;
call
heap
(
threadinfo
,
'ov%unode'
,
'define_ov'
,
size
(
ov
%
unode
),
'dp'
,
+1
)
allocate
(
ov
%
vnode
(
ov
%
nnode
),
stat
=
threadinfo
%
err
)
;
call
heap
(
threadinfo
,
'ov%vnode'
,
'define_ov'
,
size
(
ov
%
vnode
),
'dp'
,
+1
)
allocate
(
ov
%
wnode
(
ov
%
nnode
),
stat
=
threadinfo
%
err
)
;
call
heap
(
threadinfo
,
'ov%wnode'
,
'define_ov'
,
size
(
ov
%
wnode
),
'dp'
,
+1
)
allocate
(
ov
%
wpreiso
(
ov
%
nnode
),
stat
=
threadinfo
%
err
)
;
call
heap
(
threadinfo
,
'ov%wpreiso'
,
'define_ov'
,
size
(
ov
%
wpreiso
),
'dp'
,
+1
)
allocate
(
ov
%
temp
(
ov
%
nnode
),
stat
=
threadinfo
%
err
)
;
call
heap
(
threadinfo
,
'ov%temp'
,
'define_ov'
,
size
(
ov
%
temp
),
'dp'
,
+1
)
! Line below added by dwhipp - 12/09
allocate
(
ov
%
pressure
(
ov
%
nleaves
),
stat
=
threadinfo
%
err
)
;
call
heap
(
threadinfo
,
'ov%pressure'
,
'define_ov'
,
size
(
ov
%
pressure
),
'dp'
,
+1
)
...
...
@@ -107,7 +106,6 @@ if (params%irestart.eq.0) then
ov
%
unode
=
0.d0
ov
%
vnode
=
0.d0
ov
%
wnode
=
0.d0
ov
%
wpreiso
=
0.d0
! Line below uncommented by dwhipp - 12/09
ov
%
pressure
=
0.d0
! Line below added by dwhipp - 12/09
...
...
@@ -133,7 +131,6 @@ else
allocate
(
ov
%
unode
(
ov
%
nnode
),
stat
=
err
)
;
if
(
err
.ne.
0
)
call
stop_run
(
'Error alloc ov%unode in define_ov$'
)
allocate
(
ov
%
vnode
(
ov
%
nnode
),
stat
=
err
)
;
if
(
err
.ne.
0
)
call
stop_run
(
'Error alloc ov%vnode in define_ov$'
)
allocate
(
ov
%
wnode
(
ov
%
nnode
),
stat
=
err
)
;
if
(
err
.ne.
0
)
call
stop_run
(
'Error alloc ov%wnode in define_ov$'
)
allocate
(
ov
%
wpreiso
(
ov
%
nnode
),
stat
=
err
)
;
if
(
err
.ne.
0
)
call
stop_run
(
'Error alloc ov%wpreiso in define_ov$'
)
allocate
(
ov
%
temp
(
ov
%
nnode
),
stat
=
err
)
;
if
(
err
.ne.
0
)
call
stop_run
(
'Error alloc ov%temp in define_ov$'
)
! Line below uncommented by dwhipp - 12/09
allocate
(
ov
%
pressure
(
ov
%
nleaves
),
stat
=
err
)
;
if
(
err
.ne.
0
)
call
stop_run
(
'Error alloc ov%pressure in define_ov$'
)
...
...
@@ -149,7 +146,7 @@ else
ov
%
unode
(
i
),
&
ov
%
vnode
(
i
),
&
ov
%
wnode
(
i
),
&
ov
%
wpreiso
(
i
),
&
wpreiso
,
&
(
xlsf
,
j
=
1
,
nlsf
),
&
ov
%
temp
(
i
),
&
ov
%
temporary_nodal_pressure
(
i
),
&
...
...
@@ -166,6 +163,8 @@ else
ov
%
spressure
(
i
),
&
crit
,
&
e2d
,
&
evisc
,
&
is_plas
,
&
ov
%
whole_leaf_in_fluid
(
i
),&
i
=
1
,
ov
%
nleaves
)
read
(
9
)
(
ov
%
octree
(
i
),
i
=
1
,
ov
%
octree
(
3
))
...
...
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