Skip to content
Snippets Groups Projects
Commit 11e269f8 authored by Dave Whipp's avatar Dave Whipp
Browse files

Modified to output the elemental dilatation rate

parent d5e44d00
No related branches found
No related tags found
No related merge requests found
...@@ -95,6 +95,7 @@ if (iproc.eq.0) then ...@@ -95,6 +95,7 @@ if (iproc.eq.0) then
osolve%nlsf, & osolve%nlsf, &
cl%np, & cl%np, &
current_time current_time
! write info on octree solve nodes (x,y,z,u,v,w,lsf,temp) ! write info on octree solve nodes (x,y,z,u,v,w,lsf,temp)
write (9) (osolve%x(i), & write (9) (osolve%x(i), &
osolve%y(i), & osolve%y(i), &
...@@ -112,18 +113,21 @@ if (iproc.eq.0) then ...@@ -112,18 +113,21 @@ if (iproc.eq.0) then
osolve%kfix((i-1)*3+3), & osolve%kfix((i-1)*3+3), &
osolve%kfixt(i), & osolve%kfixt(i), &
i=1,osolve%nnode) i=1,osolve%nnode)
! write icon array ! write icon array
write (9) ((osolve%icon(k,i),k=1,8), & write (9) ((osolve%icon(k,i),k=1,8), &
! Line below uncommented by dwhipp - 12/09 ! Line below uncommented by dwhipp - 12/09
osolve%pressure(i), & osolve%pressure(i), &
! Line below added by dwhipp - 12/09 ! Line below added by dwhipp - 12/09
osolve%spressure(i), & osolve%spressure(i), &
osolve%crit(i), & osolve%crit(i), &
osolve%e2d(i), & osolve%e2d(i), &
osolve%eviscosity(i), & osolve%eviscosity(i), &
osolve%is_plastic(i), & osolve%is_plastic(i), &
osolve%dilatr(i), &
ov%whole_leaf_in_fluid(i), & ov%whole_leaf_in_fluid(i), &
i=1,osolve%nleaves) i=1,osolve%nleaves)
! write octree information ! write octree information
write (9) (osolve%octree(i),i=1,osolve%octree(3)) write (9) (osolve%octree(i),i=1,osolve%octree(3))
! write bad face information ! write bad face information
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment