-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
33 lines (26 loc) · 1.01 KB
/
Copy pathconfig.py
File metadata and controls
33 lines (26 loc) · 1.01 KB
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
# # config.py
# NUM_SAMPLES = 1000
# TAILGATE_WIDTH = 1000 # mm
# TAILGATE_HEIGHT = 500 # mm
# WINDOW_WIDTH = 980 # mm
# WINDOW_HEIGHT = 480 # mm
# TAILGATE_TOL = 2 # mm
# WINDOW_TOL = 1 # mm
# NOMINAL_GAP = 10 # mm
# # Define the range of gap sizes to test
# GAP_MIN = 0.0 # Minimum gap size (mm)
# GAP_MAX = 10.0 # Maximum gap size (mm)
# GAP_STEP = 0.1 # Step size for gap (mm)
# config.py
NUM_SAMPLES = 1000
TAILGATE_WIDTH = 1000 # mm
TAILGATE_HEIGHT = 500 # mm
WINDOW_WIDTH = 999.8 # mm (just slightly smaller than tailgate width - 2 * 0.1)
WINDOW_HEIGHT = 499.8 # mm (slightly smaller than tailgate height - 2 * 0.1)
TAILGATE_TOL = 0.05 # mm (very small tolerance, realistic)
WINDOW_TOL = 0.05 # mm
NOMINAL_GAP = 0.1 # mm (small nominal gap)
# Define the range of gap sizes to test
GAP_MIN = 0.0 # Minimum gap size (mm)
GAP_MAX = 0.5 # Maximum gap size (mm)
GAP_STEP = 0.01 # Step size for gap (finer step for small gaps)