Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/output/dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void Dump::CreateMPIDataType(GridBox gb, bool read) {
int size[3];
int subsize[3];

// the grid is required to now the current MPÏ domain decomposition
// the grid is required to know the current MPÏ domain decomposition
Grid *grid = data->mygrid;

// Dimensions for cell-centered fields
Expand Down
5 changes: 5 additions & 0 deletions src/pydefix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,11 @@ PYBIND11_EMBEDDED_MODULE(pydefix, m) {
m.attr("BX1s") = BX1s; ,
m.attr("BX2s") = BX2s; ,
m.attr("BX3s") = BX3s; )
#ifdef EVOLVE_VECTOR_POTENTIAL
m.attr("AX1e") = AX1e;
m.attr("AX2e") = AX2e;
m.attr("AX3e") = AX3e;
#endif
#endif
m.attr("IDIR") = IDIR;
m.attr("JDIR") = JDIR;
Expand Down