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
8ee26b5a
Commit
8ee26b5a
authored
15 years ago
by
Douglas Guptill
Browse files
Options
Downloads
Patches
Plain Diff
like the name says
parent
9ec56787
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
doc/compile-issues
+42
-0
42 additions, 0 deletions
doc/compile-issues
with
42 additions
and
0 deletions
doc/compile-issues
0 → 100644
+
42
−
0
View file @
8ee26b5a
=======================================
in move_surface.f90:
type (octreev) ov
call octree_interpolate_many (3,ov%octree,ov%noctree,ov%icon,ov%nleaves, &
call octree_interpolate_many_derivative (3,ov%octree,ov%noctree,ov%icon,ov%nleaves,
in module_definitions.f90
type octreev
integer,dimension(:),pointer::octree
integer noctree,nnode,nleaves
double precision,dimension(:),pointer::x,y,z,temp
double precision,dimension(:),pointer::unode,vnode,wnode
double precision,dimension(:),pointer::pressure
double precision,dimension(:),pointer::temporary_nodal_pressure
integer,dimension(:,:),pointer::icon
logical, dimension(:),pointer :: whole_leaf_in_fluid
end type octreev
So ov%octree is integer(:), pointer
ov%icon is integer(:,:), pointer
in OCTREE/OctreeBitPlus.f90:
subroutine octree_interpolate_many (nf,octree,noctree,icon,nleaves,nfield,x,y,z,
integer noctree,octree(noctree),nleaves,icon(8,nleaves)
subroutine octree_interpolate_many_derivative &
(nf,octree,noctree,icon,nleaves,nfield,x,y,z, &
integer noctree,octree(noctree),nleaves,icon(8,nleaves)
The difference being "pointer", and the "8"
=======================================
in CASCADE/find_neighbours, we make a code change:
c call indexx(np,points,nodes)
call indexx(np,x,nodes)
c call delaun (points,np,neighbour,vertices,nt,2*np,
c & vis_tlist,vis_elist,add_tlist,eps,nv_max,
c & mode,inactive,bfirst,itstart,subset)
call delaun (points,np,neighbour,vertices,nt,2*np,
& vis_tlist,vis_elist,add_tlist,eps,nv_max,
& mode,dummy1,bfirst,itstart,dummy2)
=======================================
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