Nodes of different colours represent the following:
Solid arrows point from a file to a file which depends upon it. A file is dependent upon another if the latter must be compiled before the former can be. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Nodes of different colours represent the following:
Solid arrows point from a file to a file which depends upon it. A file is dependent upon another if the latter must be compiled before the former can be. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
module types_environment_wrapper use classes_periodic_box, only: Abstract_Periodic_Box use classes_parallelepiped_domain, only: Abstract_Parallelepiped_Domain use classes_beta_pressure, only: Abstract_Beta_Pressure use classes_temperature, only: Abstract_Temperature use classes_external_field, only: Abstract_External_Field use classes_permittivity, only: Abstract_Permittivity use classes_reciprocal_lattice, only: Abstract_Reciprocal_Lattice use classes_visitable_walls, only: Abstract_Visitable_Walls use classes_box_size_checker, only: Abstract_Box_Size_Checker use classes_min_distance, only: Abstract_Min_Distance implicit none private type, public :: Environment_Wrapper class(Abstract_Periodic_Box), allocatable :: periodic_boxes(:) class(Abstract_Beta_Pressure), allocatable :: beta_pressure class(Abstract_Temperature), allocatable :: temperature class(Abstract_Permittivity), allocatable :: permittivity class(Abstract_External_Field), allocatable :: external_fields(:) class(Abstract_Parallelepiped_Domain), allocatable :: fields_domain(:) class(Abstract_Reciprocal_Lattice), allocatable :: reciprocal_lattices(:) class(Abstract_Min_Distance), allocatable :: wall_min_distance class(Abstract_Visitable_Walls), allocatable :: visitable_walls(:) class(Abstract_Parallelepiped_Domain), allocatable :: accessible_domains(:) !!for a point particle end type Environment_Wrapper end module types_environment_wrapper