summaryrefslogtreecommitdiff
path: root/graphics/asymptote/examples/phase.asy
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /graphics/asymptote/examples/phase.asy
Initial commit
Diffstat (limited to 'graphics/asymptote/examples/phase.asy')
-rw-r--r--graphics/asymptote/examples/phase.asy18
1 files changed, 18 insertions, 0 deletions
diff --git a/graphics/asymptote/examples/phase.asy b/graphics/asymptote/examples/phase.asy
new file mode 100644
index 0000000000..7256ffc515
--- /dev/null
+++ b/graphics/asymptote/examples/phase.asy
@@ -0,0 +1,18 @@
+import graph;
+size(8cm,6cm,IgnoreAspect);
+
+pair S0=(4,0.2);
+pair S1=(2,3);
+pair S8=(0.5,0);
+
+xaxis("$S$");
+yaxis(Label("$I$",0.5));
+
+draw(S0{curl 0}..tension 1.5..S1{W}..tension 1.5..{curl 0}S8,Arrow(Fill,0.4));
+draw((S1.x,0)..S1,dashed);
+draw((0,S1.y)..S1,dotted);
+
+labelx("$\frac{\gamma}{\beta}$",S1.x);
+labelx("$S_\infty$",S8.x);
+labely("$I_{\max}$",S1.y);
+