@@ -31,13 +31,13 @@ module MethodDisvModule
3131 procedure :: map_neighbor ! < map a location on the cell face to the shared face of a neighbor
3232 procedure :: update_flowja ! < update intercell mass flows
3333 procedure :: load_particle ! < load particle properties
34- procedure :: load_properties ! < load cell properties
35- procedure :: load_polygon ! < load cell polygon
36- procedure :: load_neighbors ! < load cell face neighbors
37- procedure :: load_indicators ! < load cell 180-degree vertex indicator
38- procedure :: load_flows ! < load the cell's flows
39- procedure :: load_boundary_flows_to_defn_poly ! < load boundary flows to a polygonal cell definition
40- procedure :: load_face_flows_to_defn_poly ! < load face flows to a polygonal cell definition
34+ procedure :: load_cell_properties ! < load cell properties
35+ procedure :: load_cell_polygon ! < load cell polygon
36+ procedure :: load_cell_neighbors ! < load cell face neighbors
37+ procedure :: load_cell_flags ! < load cell 180-degree vertex indicator
38+ procedure :: load_cell_flows ! < load the cell's flows
39+ procedure :: load_cell_boundary_flows ! < load boundary flows to a polygonal cell definition
40+ procedure :: load_cell_face_flows ! < load face flows to a polygonal cell definition
4141 end type MethodDisvType
4242
4343contains
@@ -315,16 +315,16 @@ subroutine load_cell_defn(this, ic, defn)
315315 integer (I4B), intent (in ) :: ic
316316 type (CellDefnType), pointer , intent (inout ) :: defn
317317
318- call this% load_properties (ic, defn)
319- call this% load_polygon (defn)
320- call this% load_neighbors (defn)
321- call this% load_saturation_status (defn)
322- call this% load_indicators (defn)
323- call this% load_flows (defn)
318+ call this% load_cell_properties (ic, defn)
319+ call this% load_cell_polygon (defn)
320+ call this% load_cell_neighbors (defn)
321+ call this% load_cell_saturation_status (defn)
322+ call this% load_cell_flags (defn)
323+ call this% load_cell_flows (defn)
324324 end subroutine load_cell_defn
325325
326326 ! > @brief Loads cell properties to cell definition from the grid.
327- subroutine load_properties (this , ic , defn )
327+ subroutine load_cell_properties (this , ic , defn )
328328 ! dummy
329329 class(MethodDisvType), intent (inout ) :: this
330330 integer (I4B), intent (in ) :: ic
@@ -355,9 +355,9 @@ subroutine load_properties(this, ic, defn)
355355 defn% ilay = ilay
356356 end select
357357
358- end subroutine load_properties
358+ end subroutine load_cell_properties
359359
360- subroutine load_polygon (this , defn )
360+ subroutine load_cell_polygon (this , defn )
361361 ! dummy
362362 class(MethodDisvType), intent (inout ) :: this
363363 type (CellDefnType), pointer , intent (inout ) :: defn
@@ -367,11 +367,11 @@ subroutine load_polygon(this, defn)
367367 defn% polyvert, &
368368 closed= .true. )
369369 defn% npolyverts = size (defn% polyvert, dim= 2 ) - 1
370- end subroutine load_polygon
370+ end subroutine load_cell_polygon
371371
372372 ! > @brief Loads face neighbors to cell definition from the grid
373373 ! ! Assumes cell index and number of vertices are already loaded.
374- subroutine load_neighbors (this , defn )
374+ subroutine load_cell_neighbors (this , defn )
375375 ! dummy
376376 class(MethodDisvType), intent (inout ) :: this
377377 type (CellDefnType), pointer , intent (inout ) :: defn
@@ -440,12 +440,12 @@ subroutine load_neighbors(this, defn)
440440 end select
441441 ! List of edge (polygon) faces wraps around
442442 defn% facenbr(defn% npolyverts + 1 ) = defn% facenbr(1 )
443- end subroutine load_neighbors
443+ end subroutine load_cell_neighbors
444444
445445 ! > @brief Load flows into the cell definition.
446446 ! ! These include face, boundary and net distributed flows.
447447 ! ! Assumes cell index and number of vertices are already loaded.
448- subroutine load_flows (this , defn )
448+ subroutine load_cell_flows (this , defn )
449449 ! dummy
450450 class(MethodDisvType), intent (inout ) :: this
451451 type (CellDefnType), pointer , intent (inout ) :: defn
@@ -462,10 +462,10 @@ subroutine load_flows(this, defn)
462462 ! the last two elements, respectively, for size npolyverts + 3.
463463 ! If there is no flow through any face, set a no-exit-face flag.
464464 defn% faceflow = DZERO
465- call this% load_boundary_flows_to_defn_poly (defn)
466- call this% load_face_flows_to_defn_poly (defn)
467- call this% cap_wt_flow (defn)
468- call this% load_no_exit_face (defn)
465+ call this% load_cell_boundary_flows (defn)
466+ call this% load_cell_face_flows (defn)
467+ call this% cap_cell_wt_flow (defn)
468+ call this% load_cell_no_exit_face (defn)
469469
470470 ! Add up net distributed flow
471471 defn% distflow = this% fmi% SourceFlows(defn% icell) + &
@@ -478,9 +478,9 @@ subroutine load_flows(this, defn)
478478 else
479479 defn% iweaksink = 0
480480 end if
481- end subroutine load_flows
481+ end subroutine load_cell_flows
482482
483- subroutine load_face_flows_to_defn_poly (this , defn )
483+ subroutine load_cell_face_flows (this , defn )
484484 ! dummy
485485 class(MethodDisvType), intent (inout ) :: this
486486 type (CellDefnType), pointer , intent (inout ) :: defn
@@ -496,11 +496,11 @@ subroutine load_face_flows_to_defn_poly(this, defn)
496496 defn% faceflow(m) = defn% faceflow(m) + q
497497 end if
498498 end do
499- end subroutine load_face_flows_to_defn_poly
499+ end subroutine load_cell_face_flows
500500
501501 ! > @brief Load boundary flows from the grid into a polygonal cell.
502502 ! ! Assumes cell index and number of vertices are already loaded.
503- subroutine load_boundary_flows_to_defn_poly (this , defn )
503+ subroutine load_cell_boundary_flows (this , defn )
504504 ! dummy
505505 class(MethodDisvType), intent (inout ) :: this
506506 type (CellDefnType), pointer , intent (inout ) :: defn
@@ -525,13 +525,13 @@ subroutine load_boundary_flows_to_defn_poly(this, defn)
525525 defn% faceflow(npolyverts + 3 ) + &
526526 this% fmi% BoundaryFlows(ioffset + max_faces)
527527
528- end subroutine load_boundary_flows_to_defn_poly
528+ end subroutine load_cell_boundary_flows
529529
530530 ! > @brief Load 180-degree vertex indicator array and set flags
531531 ! ! indicating how cell can be represented. Assumes cell index
532532 ! ! and number of vertices are already loaded.
533533 ! <
534- subroutine load_indicators (this , defn )
534+ subroutine load_cell_flags (this , defn )
535535 ! dummy
536536 class(MethodDisvType), intent (inout ) :: this
537537 type (CellDefnType), pointer , intent (inout ) :: defn
@@ -622,6 +622,6 @@ subroutine load_indicators(this, defn)
622622 defn% can_be_quad = .true.
623623 end if
624624 end if
625- end subroutine load_indicators
625+ end subroutine load_cell_flags
626626
627627end module MethodDisvModule
0 commit comments