-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa1b36c
commit 5a311ea
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* ----- CLEO ----- | ||
* File: cartesianmotion_withreset.hpp | ||
* Project: cartesiandomain | ||
* Created Date: Tuesday 19th December 2023 | ||
* Author: Clara Bayley (CB) | ||
* Additional Contributors: | ||
* ----- | ||
* Last Modified: Tuesday 19th December 2023 | ||
* Modified By: CB | ||
* ----- | ||
* License: BSD 3-Clause "New" or "Revised" License | ||
* https://opensource.org/licenses/BSD-3-Clause | ||
* ----- | ||
* Copyright (c) 2023 MPI-M, Clara Bayley | ||
* ----- | ||
* File Description: | ||
* Motion of a superdroplet using predictor-corrector | ||
* method to update a superdroplet's coordinates and | ||
* the sdgbxindex updated accordingly for a | ||
* cartesian domain with finite/periodic boundary | ||
* conditions and reset of superdroplets that leave | ||
* the domain through the lower domain boundary | ||
*/ | ||
|
||
#ifndef CARTESIANMOTION_WITHRESET_HPP | ||
#define CARTESIANMOTION_WITHRESET_HPP | ||
|
||
#include "./cartesianmotion.hpp" | ||
|
||
#endif // CARTESIANMOTION_WITHRESET_HPP | ||
|