| tinitial commit - granular-basin - tectonic deformation experiments with Granul… | |
| git clone git://src.adamsgaard.dk/granular-basin | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit 96bd0ac1de86f9607c0d7a31e41dad321cd06761 | |
| parent 62e67c9f6439ac0091e555710eba716c7499f198 | |
| Author: esbenpalmstrom <[email protected]> | |
| Date: Fri, 26 Nov 2021 15:38:57 +0100 | |
| initial commit | |
| Diffstat: | |
| A runfullstack.jl | 11 +++++++++++ | |
| 1 file changed, 11 insertions(+), 0 deletions(-) | |
| --- | |
| diff --git a/runfullstack.jl b/runfullstack.jl | |
| t@@ -0,0 +1,11 @@ | |
| +import Dates | |
| +stack_t_start = Dates.now() | |
| + | |
| +include("init_basin.jl") | |
| +include("compact_basin.jl") | |
| +include("layer_basin.jl") | |
| +include("deform_basin.jl") | |
| + | |
| +stack_t_now = Dates.now() | |
| +stack_dur = Dates.canonicalize(stack_t_now-stack_t_start) | |
| +print("Time elapsed: ",stack_dur) |