#include "Field.h"
#include "FlagField.h"
#include "GhostLayerField.h"
#include "core/DataTypes.h"
#include <iomanip>
#include <iostream>
#include "Printers.impl.h"
|
| namespace | walberla |
| | Storage for detected contacts which can be used to perform actions for all contacts, e.g.
|
| |
| namespace | walberla::field |
| |
|
| template<typename T , uint_t fs> |
| std::ostream & | walberla::field::printSlice (std::ostream &os, const Field< T, fs > &field, int sliceCoord, cell_idx_t sliceValue, cell_idx_t f=0) |
| | Prints a slice along a coordinate axis.
|
| |
| template<typename T , uint_t fs> |
| std::ostream & | walberla::field::printSlice (std::ostream &os, const GhostLayerField< T, fs > &field, int sliceCoord, cell_idx_t sliceValue, cell_idx_t f=0) |
| | Overload of printSlice for GhostLayerFields.
|
| |
| template<typename T > |
| std::ostream & | walberla::field::printSlice (std::ostream &os, const FlagField< T > &field, int sliceCoord, cell_idx_t sliceValue, cell_idx_t f=0) |
| | Overload of printSlice for FlagFields.
|
| |