forked from fmihpc/vlasiator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.h
117 lines (97 loc) · 4.81 KB
/
grid.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
* This file is part of Vlasiator.
* Copyright 2010-2016 Finnish Meteorological Institute
*
* For details of usage, see the COPYING file and read the "Rules of the Road"
* at http://www.physics.helsinki.fi/vlasiator/
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GRID_H
#define GRID_H
#include "spatial_cell.hpp"
#include <dccrg.hpp>
#include <dccrg_cartesian_geometry.hpp>
#include "sysboundary/sysboundary.h"
#include "projects/project.h"
#include <string>
/*!
\brief Initialize DCCRG and fsgrids
*/
void initializeGrids(
int argn,
char **argc,
dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid,
FsGrid< std::array<Real, fsgrids::bfield::N_BFIELD>, 2> & perBGrid,
FsGrid< std::array<Real, fsgrids::bgbfield::N_BGB>, 2>& BgBGrid,
FsGrid< std::array<Real, fsgrids::moments::N_MOMENTS>, 2> & momentsGrid,
FsGrid< std::array<Real, fsgrids::moments::N_MOMENTS>, 2> & momentsDt2Grid,
FsGrid< std::array<Real, fsgrids::efield::N_EFIELD>, 2> & EGrid,
FsGrid< std::array<Real, fsgrids::egradpe::N_EGRADPE>, 2> & EGradPeGrid,
FsGrid< std::array<Real, fsgrids::volfields::N_VOL>, 2> & volGrid,
FsGrid< fsgrids::technical, 2>& technicalGrid,
SysBoundary& sysBoundaries,
Project& project
);
/*!
\brief Balance load
\param[in,out] mpiGrid The DCCRG grid with spatial cells
*/
void balanceLoad(dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid, SysBoundary& sysBoundaries);
/*!
Updates velocity block lists between remote neighbors and
prepares local copies of remote neighbors to receive velocity block
data. This is needed if one has locally adjusted velocity blocks
\param mpiGrid The DCCRG grid with spatial cells
*/
void updateRemoteVelocityBlockLists(
dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid,
const uint popID
);
/*! Deallocates all blocks in remote cells in order to save
* memory.
* \param mpiGrid Spatial grid
*/
void deallocateRemoteCellBlocks(dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid);
/*! Adjust sparse velocity space to make it consistent in all 6 dimensions
1) Compute which blocks have content (done for all cells in mpiGrid)
2) Adjust local velocity blocks. That is, make sure blocks exist which have content, or have
neighbors with content in all 6-dimensions. This is done for cells in cellsToAdjust list.
3) Make sure remote cells are up-to-date and ready to receive data, if doPrepareToReceiveBlocks is true.
Note that block existence does not use vlasov stencil as it is important to also include diagonals to avoid massloss
\param mpiGrid Parallel grid with spatial cells
\param cellsToAdjust List of cells that are adjusted, that is cells which blocks are added or removed.
\param doPrepareToReceiveBlocks If true, then remote cells are set up so that velocity space data can be received. Global operation, value has to be the same for all processes.
*/
bool adjustVelocityBlocks(dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid,
const std::vector<CellID>& cellsToAdjust,
bool doPrepareToReceiveBlocks,
const uint popID);
/*! Estimates memory consumption and writes it into logfile. Collective operation on MPI_COMM_WORLD
* \param mpiGrid Spatial grid
*/
void report_grid_memory_consumption(dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid);
/*! Shrink to fit velocity space data to save memory.
* \param mpiGrid Spatial grid
*/
void shrink_to_fit_grid_data(dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid);
/** Validate the velocity mesh structure. This function is only relevant for
* the AMR mesh. It makes sure that the mesh structure is valid for all spatial cells,
* i.e., that each velocity block has at most one refinement level difference to
* its neighbors (in spatial and velocity space).
* @param mpiGrid Parallel grid.
* @return If true, the mesh is valid. Otherwise an error has occurred and the simulation
* should be aborted.*/
bool validateMesh(dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid,const uint popID);
void setFaceNeighborRanks( dccrg::Dccrg<SpatialCell,dccrg::Cartesian_Geometry>& mpiGrid );
#endif