Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #135 +/- ##
==========================================
- Coverage 97.21% 97.10% -0.12%
==========================================
Files 33 33
Lines 4491 4558 +67
==========================================
+ Hits 4366 4426 +60
- Misses 125 132 +7 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
I also
|
|
Nice work @benegee! What are your thoughts on just having For shallow water and maybe advection (although less necessary there because there are fewer tests) there could be a second level of I feel like users of TrixiAtmo.jl would probably rather have the choice of physical model be the top level rather than the specifics of the mathematical formulation. |
|
Thanks for your feedback @tristanmontoya ! Sounds good to me, and feels somewhat more natural to have the equations at the top level! |
|
Here it is! I am still unsure about "cartesian_manifold". I think it makes sense to separate this from full 3D Cartesian? |
|
While this is fine with me, what do you think of this modification?
|
|
Thanks again! @tristanmontoya This make sense because we will not have different Cartesian options under shallow_water and advection, and we can spare one level. It is also fine with me to not introduce further levels under euler until we have a covariant option. |
tristanmontoya
left a comment
There was a problem hiding this comment.
Ok, this is good now. The only thing I see is that the example in the README.md should be updated to use the new directory structure as the currently referenced file doesn't exist. I don't care which case we use as the example one, main criteria is that it shouldn't take very long to run.
* reorganize examples * less AnalysisCallback output * introduce sub-testsets to get a more detailed summary * typo * fmt * re-use initial_condition_moist_bubble * fix * fix * fix * removed name from equations file * change top level * fix * fix * remove cartesian under euler, rename cartesian_manifold
Based on #29, I suggest the following structure for a start.
level 1
distinguish between equations
Current choice:
level 2
distinguish based on geometrical concept
Current choice:
(for the time being there is only cartesian under euler, which therefore left out)
euler/cartesian level 3
distinguish based on supported species
Current choice:
cartesian_euler level 4
distinguish between test cases
Current choice:
Any feedback highly appreciated, we can still change everything!