Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 87043626 authored by frey_m's avatar frey_m
Browse files

Merge branch '543-saamg-enable-rectangulardomain' into 'master'

Resolve "SAAMG: Enable RectangularDomain"

Closes #543

See merge request !372
parents 01405a79 60f7990b
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,7 @@
#include "ArbitraryDomain.h"
#include "EllipticDomain.h"
#include "BoxCornerDomain.h"
#include "RectangularDomain.h"
#include "Track/Track.h"
#include "Physics/Physics.h"
......@@ -127,6 +128,11 @@ MGPoissonSolver::MGPoissonSolver ( PartBunch *beam,
currentGeometry->getL2(),
orig_nr_m, hr_m, interpl));
bp_m->compute(itsBunch_m->get_hr());
} else if (currentGeometry->getTopology() == "RECTANGULAR") {
bp_m = std::unique_ptr<IrregularDomain>(
new RectangularDomain(currentGeometry->getA(),
currentGeometry->getB(),
orig_nr_m, hr_m));
} else {
throw OpalException("MGPoissonSolver::MGPoissonSolver",
"Geometry not known");
......
This diff is collapsed.
//
// Class RectangularDomain
// :FIXME: add brief description
// This class provides a rectangular beam pipe. The mesh adapts to the bunch
// in longitudinal direction.
//
// Copyright (c) 2008, Yves Ineichen, ETH Zürich,
// 2013 - 2015, Tülin Kaman, Paul Scherrer Institut, Villigen PSI, Switzerland
......@@ -36,44 +37,64 @@ public:
/// constructor
RectangularDomain(Vector_t nr, Vector_t hr);
/// constructor
RectangularDomain(double a, double b, Vector_t nr, Vector_t hr);
/// calculates intersection with the beam pipe
void compute(Vector_t hr);
void compute(Vector_t hr, NDIndex<3> /*localId*/);
/// returns number of nodes in xy plane (here independent of z coordinate)
int getNumXY(int z);
/// returns discretization at (x,y,z)
void getBoundaryStencil(int x, int y, int z, double &W, double &E, double &S, double &N, double &F, double &B, double &C, double &scaleFactor);
void getBoundaryStencil(int x, int y, int z, double &W, double &E,
double &S, double &N, double &F, double &B,
double &C, double &scaleFactor);
/// returns discretization at 3D index
void getBoundaryStencil(int idx, double &W, double &E, double &S, double &N, double &F, double &B, double &C, double &scaleFactor);
void getBoundaryStencil(int idx, double &W, double &E, double &S,
double &N, double &F, double &B, double &C,
double &scaleFactor);
/// returns index of neighbours at (x,y,z)
using IrregularDomain::getNeighbours;
void getNeighbours(int x, int y, int z, double &W, double &E, double &S, double &N, double &F, double &B);
void getNeighbours(int x, int y, int z, int &W, int &E,
int &S, int &N, int &F, int &B);
/// returns index of neighbours at 3D index
void getNeighbours(int idx, double &W, double &E, double &S, double &N, double &F, double &B);
void getNeighbours(int idx, int &W, int &E, int &S,
int &N, int &F, int &B);
bool hasGeometryChanged() { return false; }
void resizeMesh(Vector_t& origin, Vector_t& hr, const Vector_t& rmin,
const Vector_t& rmax, double dh);
/// returns type of boundary condition
std::string getType() {return "Rectangular";}
/// queries if a given (x,y,z) coordinate lies inside the domain
inline bool isInside(int x, int y, int /*z*/) {
double xx = (x - (nr[0] - 1) / 2.0) * hr[0];
double yy = (y - (nr[1] - 1) / 2.0) * hr[1];
return (xx <= a_m && yy < b_m);
double xx = std::abs(-a_m + hr[0] * (x + 0.5));
double yy = std::abs(-b_m + hr[1] * (y + 0.5));
return (xx < a_m && yy < b_m);
}
void setB_m(double b) {b_m = b;}
void setA_m(double a) {a_m = a;}
double getXRangeMin() { return -a_m; }
double getXRangeMax() { return a_m; }
double getXRangeMax() { return a_m; }
double getYRangeMin() { return -b_m; }
double getYRangeMax() { return b_m; }
double getYRangeMax() { return b_m; }
double getZRangeMin() { return getMinZ(); }
double getZRangeMax() { return getMaxZ(); }
int getStartIdx() {return 0;}
private:
......@@ -86,7 +107,7 @@ private:
/// conversion from (x,y,z) to index on the 3D grid
inline int getIdx(int x, int y, int z) {
if(isInside(x, y, z) && x >= 0 && y >= 0 && z >= 0)
if (isInside(x, y, z) && x >= 0 && y >= 0 && z >= 0)
return y * nr[0] + x + z * nxy_m;
else
return -1;
......
......@@ -721,7 +721,7 @@ BoundaryGeometry::BoundaryGeometry() :
itsAttr[TOPO] = Attributes::makeString
("TOPO",
"BOX, BOXCORNER, ELLIPTIC if FGEOM is selected topo is over-written ",
"RECTANGULAR, BOXCORNER, ELLIPTIC if FGEOM is selected topo is over-written ",
"ELLIPTIC");
itsAttr[LENGTH] = Attributes::makeReal
......
......@@ -317,7 +317,7 @@ private:
A, // major semi-axis of elliptic tube
B, // minor semi-axis of ellitpic tube
C, // in case of BOXCORNER hight of corner
TOPO, // BOX, BOXCORNER, ELLIPTIC if FGEOM is selected topo is over-written
TOPO, // RECTANGULAR, BOXCORNER, ELLIPTIC if FGEOM is selected topo is over-written
ZSHIFT, // Shift in z direction
XYZSCALE, // Multiplicative scaling factor for coordinates
XSCALE, // Multiplicative scaling factor for x-coordinates
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment