mirror of
https://git.gfz-potsdam.de/naaice/tug.git
synced 2025-12-13 09:28:23 +01:00
added print statement for experimental purposes to first_example
This commit is contained in:
parent
c798c61706
commit
1df7f82553
@ -44,6 +44,11 @@ int main(int argc, char *argv[]) {
|
||||
BoundaryCondition bc(n);
|
||||
input_param.setBoundaryCondition(bc);
|
||||
|
||||
BoundaryCondition bc2 = input_param.getBoundaryCondition();
|
||||
auto [bc_left, bc_right] = bc2.row_boundary(0);
|
||||
cout << "left: " << unsigned(bc_left.type) << endl;
|
||||
cout << "right: " << unsigned(bc_right.type) << endl;
|
||||
|
||||
ofstream myfile;
|
||||
myfile.open("output.csv");
|
||||
if (!myfile) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user