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

Format cleanup

parent db4fc4af
No related branches found
No related tags found
No related merge requests found
...@@ -92,13 +92,13 @@ if (params%irestart.eq.0) then ...@@ -92,13 +92,13 @@ if (params%irestart.eq.0) then
call octreev_shrink_xyz(ov, threadinfo) call octreev_shrink_xyz(ov, threadinfo)
! now that ov%nnode is known we can allocate the others ! now that ov%nnode is known we can allocate the others
allocate (ov%unode(ov%nnode),stat=threadinfo%err) ; call heap (threadinfo,'ov%unode','define_ov',size(ov%unode),'dp',+1) 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%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%wnode(ov%nnode),stat=threadinfo%err) ; call heap (threadinfo,'ov%wnode','define_ov',size(ov%wnode),'dp',+1)
allocate (ov%wnodeiso(ov%nnode),stat=threadinfo%err) ; call heap (threadinfo,'ov%wnodeiso','define_ov',size(ov%wnodeiso),'dp',+1) allocate (ov%wnodeiso(ov%nnode),stat=threadinfo%err) ; call heap (threadinfo,'ov%wnodeiso','define_ov',size(ov%wnodeiso),'dp',+1)
allocate (ov%temp(ov%nnode),stat=threadinfo%err) ; call heap (threadinfo,'ov%temp','define_ov',size(ov%temp),'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 ! 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) allocate (ov%pressure(ov%nleaves),stat=threadinfo%err) ; call heap (threadinfo,'ov%pressure','define_ov',size(ov%pressure),'dp',+1)
! Line below added by dwhipp - 12/09 ! Line below added by dwhipp - 12/09
allocate (ov%spressure(ov%nleaves),stat=threadinfo%err) ; call heap (threadinfo,'ov%spressure','define_ov',size(ov%spressure),'dp',+1) allocate (ov%spressure(ov%nleaves),stat=threadinfo%err) ; call heap (threadinfo,'ov%spressure','define_ov',size(ov%spressure),'dp',+1)
allocate (ov%temporary_nodal_pressure(ov%nnode),stat=threadinfo%err) allocate (ov%temporary_nodal_pressure(ov%nnode),stat=threadinfo%err)
...@@ -150,7 +150,7 @@ else ...@@ -150,7 +150,7 @@ else
ov%unode(i), & ov%unode(i), &
ov%vnode(i), & ov%vnode(i), &
ov%wnode(i), & ov%wnode(i), &
ov%wnodeiso(i), & ov%wnodeiso(i), &
(xlsf,j=1,nlsf), & (xlsf,j=1,nlsf), &
ov%temp(i), & ov%temp(i), &
ov%temporary_nodal_pressure(i), & ov%temporary_nodal_pressure(i), &
......
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