commit 031b626cdbd7f4ae6a27bfd6e621b751d96b9ed6
parent 6cf3d46bee5b38789abdf9ca9d9a4c04dc7381cd
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Fri, 10 Jun 2022 10:06:00 +0200
max_depth_simple_shear: remove unused -O option
Diffstat:
2 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/max_depth_simple_shear.1 b/max_depth_simple_shear.1
@@ -13,7 +13,6 @@
.Op Fl h
.Op Fl i Ar fluid-viscosity
.Op Fl k Ar fluid-permeability
-.Op Fl O Ar fluid-pressure-top
.Op Fl P Ar grain-compressibility
.Op Fl p Ar grain-porosity
.Op Fl q Ar fluid-pressure-freq
@@ -51,8 +50,6 @@ Fluid dynamic viscosity [Pa*s] (1.787e-3).
.It Fl k Ar fluid-permeability
Darcian intrinsic permeability of granular material [m^2] (default
1.9e-15).
-.It Fl O Ar fluid-pressure-top
-Fluid pressure applied at the top boundary [Pa] (default 0).
.It Fl P Ar grain-compressibility
Granular material compressibility [Pa^-1] (default 1e-8).
.It Fl p Ar grain-porosity
diff --git a/max_depth_simple_shear.c b/max_depth_simple_shear.c
@@ -35,7 +35,6 @@ usage(void)
"[-h] "
"[-i fluid-viscosity] "
"[-k fluid-permeability] "
- "[-O fluid-pressure-top] "
"[-P grain-compressibility] "
"[-p grain-porosity] "
"[-q fluid-pressure-freq] "
@@ -203,9 +202,6 @@ main(int argc, char *argv[])
case 'k':
new_k = atof(EARGF(usage()));
break;
- case 'O':
- sim.p_f_top = atof(EARGF(usage()));
- break;
case 'P':
sim.alpha = atof(EARGF(usage()));
break;