25 #include "mimmo_propagators.hpp"
53 std::array<double, 3> origin({{0.0,0.0,0.0}});
54 double width(0.2), height(0.2);
55 double prismdepth(0.4), bulkdepth(0.6);
57 int nw(10), nh(10), npd(20), nbd(30);
59 double deltaw = width/ double(nw);
60 double deltah = height/ double(nh);
61 double deltapd = prismdepth/ double(npd);
62 double deltabd = bulkdepth/ double(nbd);
64 std::vector<std::array<double,3> > verts ((nw+1)*(nh+1)*(npd+nbd+1));
68 for(
int k=0; k<npd; ++k){
69 for(
int j=0; j<=nh; ++j){
70 for(
int i=0; i<=nw; ++i){
71 verts[counter][0] = origin[0] + deltaw * i;
72 verts[counter][1] = origin[1] + deltah * j;
73 verts[counter][2] = origin[2] + deltapd * k;
79 for(
int k=0; k<=nbd; ++k){
80 for(
int j=0; j<=nh; ++j){
81 for(
int i=0; i<=nw; ++i){
82 verts[counter][0] = origin[0] + deltaw * i;
83 verts[counter][1] = origin[1] + deltah * j;
84 verts[counter][2] = origin[2] + deltapd * npd + deltabd * k;
92 mesh->getPatch()->reserveVertices(counter);
95 for(
const auto & vertex : verts){
96 mesh->addVertex(vertex);
99 mesh->getPatch()->reserveCells(2*nw*nh*npd + 6*nw*nh*nbd);
102 std::vector<long> conn(6,0);
103 for(
int k=0; k<npd; ++k){
104 for(
int j=0; j<nh; ++j){
105 for(
int i=0; i<nw; ++i){
107 conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
108 conn[1] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i+1;
109 conn[2] = (nw+1)*(nh+1)*k + (nw+1)*j + i+1;
110 conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i;
111 conn[4] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
112 conn[5] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i+1;
114 mesh->addConnectedCell(conn, bitpit::ElementType::WEDGE);
116 conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
117 conn[1] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i;
118 conn[2] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i+1;
119 conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i;
120 conn[4] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i;
121 conn[5] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
123 mesh->addConnectedCell(conn, bitpit::ElementType::WEDGE);
134 for(
int k=npd; k<(npd+nbd); ++k){
135 for(
int j=0; j<nh; ++j){
136 for(
int i=0; i<nw; ++i){
138 conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
139 conn[1] = (nw+1)*(nh+1)*k + (nw+1)*j + i+1;
140 conn[2] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i+1;
141 conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
143 mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
146 conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
147 conn[1] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i+1;
148 conn[2] = (nw+1)*(nh+1)*k + (nw+1)*j + i+1;
149 conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
151 mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
154 conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
155 conn[1] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i+1;
156 conn[2] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i;
157 conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
159 mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
162 conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
163 conn[1] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i;
164 conn[2] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i+1;
165 conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
167 mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
170 conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
171 conn[1] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i;
172 conn[2] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i;
173 conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
175 mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
178 conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
179 conn[1] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i;
180 conn[2] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i;
181 conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
183 mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
189 mesh->updateAdjacencies();
190 mesh->updateInterfaces();
193 livector1D borderverts = mesh->extractBoundaryVertexID();
196 double zin(0.0), zout(prismdepth+bulkdepth), zwork;
197 std::vector<long> boundary1verts, boundary2verts;
198 for(
long idv : borderverts){
199 zwork = mesh->getVertexCoords(idv)[2];
200 if(std::abs(zwork - zin) < 0.5*deltapd){
201 boundary1verts.push_back(idv);
203 if(std::abs(zwork - zout) < 0.5*deltabd){
204 boundary2verts.push_back(idv);
208 livector1D boundary1faces = mesh->getInterfaceFromVertexList(boundary1verts,
true,
true);
209 livector1D boundary2faces = mesh->getInterfaceFromVertexList(boundary2verts,
true,
true);
213 pidfaces.reserve(boundary1faces.size()+boundary2faces.size());
214 for(
long id : boundary1faces){
215 pidfaces.insert(
id,0);
217 for(
long id : boundary2faces){
218 pidfaces.insert(
id,1);
221 std::vector<long> boundaryverts(boundary1verts.begin(), boundary1verts.end());
222 boundaryverts.insert(boundaryverts.end(), boundary2verts.begin(), boundary2verts.end());
225 auto orinterfaces = mesh->getInterfaces();
226 auto orcells = mesh->getCells();
229 boundary->getPatch()->reserveVertices(boundaryverts.size());
230 boundary->getPatch()->reserveCells(pidfaces.size());
233 for(
long id : boundaryverts){
234 boundary->addVertex(mesh->getVertexCoords(
id),
id);
238 for(
auto it=pidfaces.begin(); it!=pidfaces.end(); ++it){
239 bitpit::Interface & ii = orinterfaces.at(it.getId());
240 long * conn = ii.getConnect();
241 std::size_t connsize = ii.getConnectSize();
243 bitpit::ElementType et = orcells.at(ii.getOwner()).getFaceType(ii.getOwnerFace());
245 boundary->addConnectedCell(std::vector<long>(&conn[0], &conn[connsize]), et, *it,it.getId());
247 boundary->updateAdjacencies();
265 long targetNode = (11*11)*25 + (11)*5 + 5;
272 bc_surf_field.reserve(boundary->getNVertices());
273 for(
long val : boundary->getVertices().getIds()){
274 bc_surf_field.insert(val, 0.0);
278 std::vector<long> listPP = boundary->getVertexFromCellList(boundary->extractPIDCells(0));
279 for(
long id : listPP){
280 bc_surf_field.at(
id) = 10.0;
284 mimmo::PropagateScalarField * prop =
new mimmo::PropagateScalarField();
285 prop->setName(
"test00002_PropagateScalarField");
286 prop->setGeometry(mesh);
287 prop->addDirichletBoundaryPatch(boundary);
288 prop->addDirichletConditions(&bc_surf_field);
289 prop->setDamping(
false);
290 prop->setPlotInExecution(
true);
291 prop->setSolverMultiStep(4);
294 auto values = prop->getPropagatedField();
295 std::cout<< values->at(targetNode) <<std::endl;
296 check = check || (std::abs(values->at(targetNode)-3.75446) > 1.0E-5);
306 int main(
int argc,
char *argv[] ) {
312 MPI_Init(&argc, &argv);
319 catch(std::exception & e){
320 std::cout<<
"test_propagators_00002 exited with an error of type : "<<e.what()<<std::endl;