blob: 8dee83940657ec10174b39724159f5117067bd99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/usr/bin/env python3
import matplotlib.pyplot as plt
import numpy as np
import os
import argparse
from matplotlib.ticker import MultipleLocator
# read command line argument:
parser = argparse.ArgumentParser(
description="plot elevation versus distance at boundaries")
parser.add_argument("location", help="boundary location")
args = parser.parse_args()
if args.location == 'top':
inputFilename = "top_boundary.xyz"
lineColour = "tab:blue"
plotTitle = 'Top boundary profile'
elif args.location == 'bottom':
inputFilename = "bottom_boundary.xyz"
lineColour = "tab:green"
plotTitle = 'Bottom boundary profile'
elif args.location == 'left':
inputFilename = "left_boundary.xyz"
lineColour = "tab:red"
plotTitle = 'Left boundary profile'
elif args.location == 'right':
inputFilename = "right_boundary.xyz"
lineColour = "tab:orange"
plotTitle = 'Right boundary profile'
def detach_display():
x, y, z = np.loadtxt(inputFilename, delimiter=' ', unpack=True)
fig, ax = plt.subplots()
plt.plot(x,z, color=lineColour, label='elevation')
plt.xlabel('x / m')
plt.ylabel('z / m')
plt.title(plotTitle)
ax.yaxis.set_minor_locator(MultipleLocator(0.2))
plt.grid(True, which='minor')
plt.show()
if os.fork():
# parent
pass
else:
# child
detach_display()
|