After testing with Vacon the second time
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -3,4 +3,5 @@
|
||||
TheHenryPump.Wrk
|
||||
*.ACD_V28
|
||||
|
||||
*/.idea/*
|
||||
*/.idea/*
|
||||
*.pyc
|
||||
|
||||
13235
TheHenryPump.ACD
13235
TheHenryPump.ACD
File diff suppressed because one or more lines are too long
@@ -1,57 +0,0 @@
|
||||
"""Calculate the time for each stroke and then the SPM."""
|
||||
|
||||
nameplate_hz = 120.0
|
||||
nameplate_rpm = 1200.0
|
||||
|
||||
approach_freq = 20
|
||||
|
||||
total_stroke_length = 60
|
||||
offset_top = 2
|
||||
offset_bottom = 2
|
||||
|
||||
accel_time = 2.0
|
||||
decel_time = 2.0
|
||||
|
||||
thread_pitch = 0.5906
|
||||
|
||||
|
||||
def time_for_freq_change(freq_delta, np_hz, ramp_time):
|
||||
"""Calculate the time required for a frequency change."""
|
||||
return (freq_delta / np_hz) * ramp_time
|
||||
|
||||
|
||||
def dist_for_freq_change(freq_delta, ramp_time, np_hz, np_rpm, thread_pitch):
|
||||
"""Calculate the distance required for a frequency change."""
|
||||
time_required = time_for_freq_change(freq_delta, np_hz, ramp_time)
|
||||
return 0.75 * freq_delta * (np_rpm / np_hz) * (1.0 / 60.0) * time_required * thread_pitch
|
||||
|
||||
|
||||
def time_for_uniform_freq(freq, distance, np_hz, np_rpm, thread_pitch):
|
||||
"""Calculate the time required to move a distance at a frequency."""
|
||||
return distance / (freq * (np_rpm / np_hz) * (1.0 / 60.0) * thread_pitch)
|
||||
|
||||
|
||||
def calculate_stroke_time(stroke_length, upper_offset, lower_offset, run_frequency, ramp_frequency, accel_time, decel_time):
|
||||
"""Calculate the time it takes to make a full stroke."""
|
||||
ramp_up_time = time_for_freq_change(run_frequency, nameplate_hz, accel_time)
|
||||
ramp_up_dist = dist_for_freq_change(run_frequency, accel_time, nameplate_hz, nameplate_rpm, thread_pitch)
|
||||
|
||||
ramp_down_time = time_for_freq_change(run_frequency - ramp_frequency, nameplate_hz, decel_time)
|
||||
ramp_down_dist = dist_for_freq_change(run_frequency - ramp_frequency, decel_time, nameplate_hz, nameplate_rpm, thread_pitch)
|
||||
|
||||
turn_time = time_for_freq_change(ramp_frequency, nameplate_hz, decel_time)
|
||||
turn_dist = dist_for_freq_change(ramp_frequency, decel_time, nameplate_hz, nameplate_rpm, thread_pitch)
|
||||
|
||||
run_dist = total_stroke_length - (offset_bottom + offset_top + ramp_up_dist + ramp_down_dist + turn_dist)
|
||||
run_time = time_for_uniform_freq(run_frequency, run_dist, nameplate_hz, nameplate_rpm, thread_pitch)
|
||||
|
||||
stroke_time = 2.0 * (ramp_up_time + run_time + ramp_down_time + turn_time)
|
||||
return stroke_time
|
||||
|
||||
|
||||
for ramp_i in [0.2, 0.4, 0.6, 0.8, 1.0, 1.2, 1.4, 1.6, 1.8, 2.0]:
|
||||
print("-----")
|
||||
print("Ramp Rate: {}".format(ramp_i))
|
||||
for hz_i in [20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 110.0, 120.0]:
|
||||
spm = 60 / calculate_stroke_time(total_stroke_length, offset_top, offset_bottom, hz_i, approach_freq, ramp_i, ramp_i)
|
||||
print("Freq: {} Hz., SPM: {}".format(hz_i, spm))
|
||||
@@ -1,22 +0,0 @@
|
||||
|
||||
|
||||
thread_pitch = 0.5904
|
||||
stroke_length = 60.0
|
||||
|
||||
motor_nameplate_hertz = 120.0
|
||||
motor_nameplate_rpm = 1200.0
|
||||
|
||||
def find_rpm_for_spm(spm_target):
|
||||
revolutions_per_fullstroke = 2.0 * stroke_length / thread_pitch
|
||||
seconds_per_stroke = 60.0 / spm_target
|
||||
revolutions_per_second = revolutions_per_fullstroke / seconds_per_stroke
|
||||
return revolutions_per_second * 60.0
|
||||
|
||||
def find_hz_for_rpm(rpm_target):
|
||||
return rpm_target * (motor_nameplate_hertz / motor_nameplate_rpm)
|
||||
|
||||
if __name__ == '__main__':
|
||||
for x in [1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]:
|
||||
rpm = round(find_rpm_for_spm(x), 3)
|
||||
hz = round(find_hz_for_rpm(rpm), 3)
|
||||
print(x, rpm, hz)
|
||||
253
henrypump.py
Normal file
253
henrypump.py
Normal file
@@ -0,0 +1,253 @@
|
||||
"""Compute various values for THE Henry Pump."""
|
||||
from math import sqrt
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
# GLOBAL PARAMETERS
|
||||
g_dt = 0.050 # seconds
|
||||
g_thread_pitch = 0.5906
|
||||
|
||||
g_accel_time = 1.0 # seconds
|
||||
g_decel_time = 1.0 # seconds
|
||||
|
||||
g_stroke_length = 60.0 # inches
|
||||
g_upper_offset = 9.0 # inches
|
||||
g_lower_offset = 16.0 # inches
|
||||
|
||||
g_motor_full_speed_hz = 120.0 # Hz
|
||||
g_motor_full_speed_rpm = 1200.0 # RPM
|
||||
|
||||
g_run_speed = 120.0 # Hz
|
||||
|
||||
pump_constants = {
|
||||
0.625: 0.046,
|
||||
0.75: 0.066,
|
||||
0.9375: 0.117,
|
||||
1.0625: 0.132,
|
||||
1.125: 0.148,
|
||||
1.25: 0.182,
|
||||
1.5: 0.262,
|
||||
1.75: 0.357,
|
||||
1.78125: 0.370,
|
||||
2.0: 0.466,
|
||||
2.25: 0.590,
|
||||
2.5: 0.728,
|
||||
2.75: 0.861,
|
||||
3.75: 1.640,
|
||||
4.75: 2.630
|
||||
}
|
||||
|
||||
|
||||
def voltage_drop(length, current, temperature, circular_mils, alpha):
|
||||
"""Calculate the voltage drop in the wire."""
|
||||
k20 = 10.37 # 1.26 / 1000.0 # ohms of 1 circular mil foot of conductor
|
||||
return sqrt(3) * k20 * (1.0 + alpha * ((5.0 / 9.0) * (temperature - 32.0) - 20.0)) * length * current / circular_mils
|
||||
|
||||
|
||||
def calc_voltage_needed(input_voltage, voltage_drop):
|
||||
"""Calculate the voltage needed given an input voltage and a voltage drop."""
|
||||
return input_voltage + voltage_drop
|
||||
|
||||
|
||||
def print_voltage_drops():
|
||||
"""Print values for voltage drop at distances."""
|
||||
current = 10.4 # Amps
|
||||
temperature = 250.0 # degress F
|
||||
circular_mils = 10384.0 # cross-sectional area in circular mils of conductor
|
||||
alpha_copper = 0.00393
|
||||
motor_input_voltage = 380.0
|
||||
print("---")
|
||||
for x in [400.0, 1000.0, 2000.0, 3000.0, 4000.0, 5000.0, 6000.0, 7000.0, 8000.0, 9000.0, 10000.0]:
|
||||
v_dropped = voltage_drop(x, current, temperature, circular_mils, alpha_copper)
|
||||
v_output = calc_voltage_needed(motor_input_voltage, v_dropped)
|
||||
print("Length: {}".format(x))
|
||||
print("Voltage Drop: {} V".format(round(v_dropped, 3)))
|
||||
print("Output Voltage: {} V".format(round(v_output, 3)))
|
||||
print("Motor Input Voltage {} V".format(round(motor_input_voltage, 3)))
|
||||
print("---")
|
||||
|
||||
|
||||
def time_for_freq_change(freq_delta, np_hz, ramp_time):
|
||||
"""Calculate the time required for a frequency change."""
|
||||
return (freq_delta / np_hz) * ramp_time
|
||||
|
||||
|
||||
def dist_for_freq_change(freq_delta, ramp_time, np_hz, np_rpm, thread_pitch):
|
||||
"""Calculate the distance required for a frequency change."""
|
||||
time_required = time_for_freq_change(freq_delta, np_hz, ramp_time)
|
||||
return 0.5 * time_required * freq_delta * (np_rpm / np_hz) * (1.0 / 60.0) * thread_pitch
|
||||
|
||||
|
||||
def time_for_uniform_freq(freq, distance, np_hz, np_rpm, thread_pitch):
|
||||
"""Calculate the time required to move a distance at a constant frequency."""
|
||||
return distance / (freq * (np_rpm / np_hz) * (1.0 / 60.0) * thread_pitch)
|
||||
|
||||
|
||||
def calculate_stroke_time(stroke_length, upper_offset, lower_offset, run_frequency, accel_time, decel_time, nameplate_hz=120.0, nameplate_rpm=1200.0, thread_pitch=0.5406):
|
||||
"""Calculate the time it takes to make a full stroke."""
|
||||
ramp_up_time = time_for_freq_change(run_frequency, nameplate_hz, accel_time)
|
||||
ramp_up_dist = dist_for_freq_change(run_frequency, accel_time, nameplate_hz, nameplate_rpm, thread_pitch)
|
||||
|
||||
ramp_down_time = time_for_freq_change(run_frequency, nameplate_hz, decel_time)
|
||||
ramp_down_dist = dist_for_freq_change(run_frequency, decel_time, nameplate_hz, nameplate_rpm, thread_pitch)
|
||||
|
||||
run_dist = stroke_length - (lower_offset + upper_offset + ramp_up_dist + ramp_down_dist)
|
||||
run_time = time_for_uniform_freq(run_frequency, run_dist, nameplate_hz, nameplate_rpm, thread_pitch)
|
||||
|
||||
stroke_time = 2.0 * (ramp_up_time + run_time + ramp_down_time)
|
||||
return stroke_time
|
||||
|
||||
|
||||
def print_stroke_times():
|
||||
"""Print the required frequency for different SPM's with different ramp times."""
|
||||
for ramp_i in [0.2, 0.4, 0.6, 0.8, 1.0, 1.2, 1.4, 1.6, 1.8, 2.0]:
|
||||
print("-----")
|
||||
print("Ramp Rate: {}".format(ramp_i))
|
||||
for hz_i in [20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 110.0, 120.0]:
|
||||
spm = 60 / calculate_stroke_time(g_stroke_length, g_upper_offset, g_lower_offset, hz_i, ramp_i, ramp_i)
|
||||
print("Freq: {} Hz., SPM: {}".format(hz_i, spm))
|
||||
|
||||
|
||||
def sim(run_freq, dt, num_strokes, stroke_length, accel_time, decel_time, upper_offset, lower_offset, motor_full_speed_hz, motor_full_speed_rpm, thread_pitch, use_average=False):
|
||||
"""Run the main simulation loop."""
|
||||
strokes = 0
|
||||
|
||||
time_to_turnaround = time_for_freq_change(run_freq, motor_full_speed_hz, decel_time)
|
||||
# time_to_turnaround = decel_time - (motor_full_speed_hz - run_freq) * decel_time / motor_full_speed_hz
|
||||
print("Turn Time: {} s.".format(time_to_turnaround))
|
||||
|
||||
distance_to_turnaround = dist_for_freq_change(run_freq, decel_time, motor_full_speed_hz, motor_full_speed_rpm, thread_pitch)
|
||||
# distance_to_turnaround = 0.5 * time_to_turnaround * run_freq * (motor_full_speed_rpm / motor_full_speed_hz) * (1.0 / 60.0) * thread_pitch
|
||||
print("Turn Distance: {} in.".format(distance_to_turnaround))
|
||||
|
||||
upper_turnaround_target = stroke_length - (upper_offset + distance_to_turnaround)
|
||||
upper_offset_target = stroke_length - upper_offset
|
||||
lower_turnaround_target = lower_offset + distance_to_turnaround
|
||||
|
||||
print("--")
|
||||
print("Targets")
|
||||
print("-")
|
||||
print("Lower Offset: {} in.".format(lower_offset))
|
||||
print("Turnaround Target: {} in.".format(upper_turnaround_target))
|
||||
print("Upper Offset: {} in.".format(upper_offset_target))
|
||||
print("Lower Turnaround Target: {} in.".format(lower_turnaround_target))
|
||||
print("--")
|
||||
|
||||
position = lower_offset
|
||||
time = 0.0
|
||||
|
||||
direction = 1
|
||||
starting_speed = 0.0 # Hz
|
||||
speed = starting_speed
|
||||
last_speed = speed
|
||||
|
||||
speed_array = []
|
||||
position_array = []
|
||||
time_array = []
|
||||
stroke_part = -1
|
||||
|
||||
max_position = 0
|
||||
min_position = stroke_length
|
||||
|
||||
while strokes != num_strokes:
|
||||
last_speed = speed
|
||||
if direction == 1:
|
||||
if position < upper_turnaround_target:
|
||||
# below offset and turnaround, ramp up to setpoint, then run at setpoint
|
||||
if stroke_part != 0:
|
||||
stroke_part = 0
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed < run_freq:
|
||||
speed += (motor_full_speed_hz / accel_time) * dt
|
||||
if speed > run_freq:
|
||||
speed = run_freq
|
||||
elif position >= upper_turnaround_target:
|
||||
# above turnaround distance, ramp to 0 and change direction
|
||||
if stroke_part != 1:
|
||||
stroke_part = 1
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed > 0:
|
||||
speed += -1.0 * (motor_full_speed_hz / decel_time) * dt
|
||||
if speed <= 0:
|
||||
speed = 0
|
||||
direction = -1
|
||||
|
||||
elif direction == -1:
|
||||
if position > lower_turnaround_target:
|
||||
# above offset and rampdown distance, ramp up to setpoint (negative), then run at setpoint
|
||||
if stroke_part != 2:
|
||||
stroke_part = 2
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed > (-1.0 * run_freq):
|
||||
speed += -1.0 * (motor_full_speed_hz / accel_time) * dt
|
||||
if speed < (-1.0 * run_freq):
|
||||
speed = -1.0 * run_freq
|
||||
elif position <= lower_turnaround_target:
|
||||
# below turnaround distance, ramp to 0 and change direction
|
||||
if stroke_part != 3:
|
||||
stroke_part = 3
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed < 0:
|
||||
speed += 1.0 * (motor_full_speed_hz / decel_time) * dt
|
||||
if speed >= 0:
|
||||
speed = 0
|
||||
direction = 1
|
||||
strokes += 1
|
||||
|
||||
if use_average:
|
||||
delta_x = (speed + last_speed) / 2.0 * (motor_full_speed_rpm / motor_full_speed_hz) * (dt / 60.0) * thread_pitch
|
||||
else:
|
||||
delta_x = speed * (motor_full_speed_rpm / motor_full_speed_hz) * (dt / 60.0) * thread_pitch
|
||||
|
||||
position += delta_x
|
||||
time += dt
|
||||
speed_array.append(speed * (motor_full_speed_rpm / motor_full_speed_hz))
|
||||
position_array.append(position)
|
||||
time_array.append(time)
|
||||
# print("Time: {} sec., Position: {} in., Speed: {}".format(time, position, speed * (motor_full_speed_rpm / motor_full_speed_hz)))
|
||||
# sleep(dt)
|
||||
|
||||
if stroke_part == 1:
|
||||
max_position = max([max_position, position])
|
||||
|
||||
if stroke_part == 3:
|
||||
min_position = min([min_position, position])
|
||||
|
||||
SPM = 60.0 / (time / strokes)
|
||||
|
||||
# max_position = max(position_array)
|
||||
# min_position = min(position_array)
|
||||
print("Max: {}, Min: {}".format(max_position, min_position))
|
||||
print("SPM: {}".format(SPM))
|
||||
|
||||
fig, ax1 = plt.subplots()
|
||||
ax1.plot(time_array, speed_array, "b-", linewidth=2)
|
||||
# ax1.plot(position_array, speed_array, "b-", linewidth=2)
|
||||
ax1.set_ylabel("RPM", color="b")
|
||||
ax2 = ax1.twinx()
|
||||
ax2.plot(time_array, position_array, "r-", linewidth=2)
|
||||
ax2.set_ylabel("in.", color="r")
|
||||
fig.tight_layout()
|
||||
ax1.grid(color='black', linestyle='--', linewidth=1)
|
||||
plt.show()
|
||||
|
||||
|
||||
def calc_travel_time(distance, speed_rpm, thread_pitch):
|
||||
"""Calculate the time it takes to travel a distatnce at a speed."""
|
||||
rotations_needed = distance / thread_pitch
|
||||
minutes_for_full_travel = rotations_needed / speed_rpm
|
||||
seconds_for_full_travel = minutes_for_full_travel / 60.0
|
||||
return seconds_for_full_travel
|
||||
|
||||
|
||||
def calc_theoretical_production(stroke_length, spm, pump_diameter):
|
||||
"""Calculate the maximum production for a given stroke length and speed."""
|
||||
try:
|
||||
return stroke_length * pump_constants[pump_diameter] * spm
|
||||
except IndexError:
|
||||
print("Cannot find pump constant for that diameter.")
|
||||
return False
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
sim(g_run_speed, g_dt, 5, g_stroke_length, g_accel_time, g_decel_time, g_upper_offset,
|
||||
g_lower_offset, g_motor_full_speed_hz, g_motor_full_speed_rpm, g_thread_pitch, use_average=False)
|
||||
@@ -1,70 +0,0 @@
|
||||
"""
|
||||
Sample PID calculations.
|
||||
|
||||
Tests the algorithm for updating output frequency based on the current SPM.
|
||||
"""
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
# Nameplate
|
||||
nameplate_hz = 120.0
|
||||
nameplate_rpm = 1200.0
|
||||
|
||||
# Setpoints
|
||||
starting_hz = 20.0
|
||||
spm_target = 4.0
|
||||
|
||||
pid_ramp_limit_large = 1.0
|
||||
pid_ramp_limit_small = 0.2
|
||||
|
||||
pid_ramp_hz_large = 5.0
|
||||
pid_ramp_hz_small = 1.0
|
||||
|
||||
hz_setpoint = starting_hz
|
||||
|
||||
|
||||
def stroke(last_stroke_spm):
|
||||
"""
|
||||
Calculate the new output frequency.
|
||||
|
||||
Input Parameters:
|
||||
last_stroke_spm: last strokes SPM
|
||||
"""
|
||||
global hz_setpoint, spm_target
|
||||
|
||||
error = abs(spm_target - last_stroke_spm)
|
||||
error_sign = 1 if (spm_target > last_stroke_spm) else -1
|
||||
|
||||
if error >= pid_ramp_limit_large:
|
||||
print("Large change")
|
||||
hz_setpoint += error_sign * pid_ramp_hz_large
|
||||
elif error >= pid_ramp_limit_small:
|
||||
print("Small change")
|
||||
hz_setpoint += error_sign * pid_ramp_hz_small
|
||||
|
||||
return hz_setpoint
|
||||
|
||||
|
||||
def loop():
|
||||
"""Loop and calculate."""
|
||||
new_spm = 1.0
|
||||
spm_arr = []
|
||||
rpm_arr = []
|
||||
|
||||
while new_spm != 0.0:
|
||||
new_spm = float(raw_input("New SPM: "))
|
||||
hz_sp = stroke(new_spm)
|
||||
new_rpm = (nameplate_rpm / nameplate_hz) * hz_sp
|
||||
spm_arr.append(new_spm)
|
||||
rpm_arr.append(new_rpm)
|
||||
print("{} SPM, {} RPM".format(new_spm, new_rpm))
|
||||
fig, ax1 = plt.subplots()
|
||||
ax1.plot(spm_arr, "b-")
|
||||
ax1.set_ylabel("SPM", color="b")
|
||||
ax2 = ax1.twinx()
|
||||
ax2.plot(rpm_arr, "r-")
|
||||
ax2.set_ylabel("RPM", color="r")
|
||||
fig.tight_layout()
|
||||
plt.show()
|
||||
|
||||
|
||||
loop()
|
||||
151
speed_testing.py
151
speed_testing.py
@@ -1,151 +0,0 @@
|
||||
"""Simulates speed testing."""
|
||||
import matplotlib.pyplot as plt
|
||||
from time import sleep
|
||||
from math import ceil
|
||||
|
||||
|
||||
dt = 0.050 # seconds
|
||||
thread_pitch = 0.5906
|
||||
|
||||
run_speed = 240.0 # Hz
|
||||
rampdown_speed = 20.0 # Hz
|
||||
|
||||
accel_time = 2.0 # seconds
|
||||
decel_time = 2.0 # seconds
|
||||
|
||||
stroke_length = 60 # inches
|
||||
upper_offset = 2 # inches
|
||||
lower_offset = 2 # inches
|
||||
|
||||
motor_full_speed_hz = 120 # Hz
|
||||
motor_full_speed_rpm = 1200 # RPM
|
||||
|
||||
|
||||
def sim(run_freq, approach_freq, stroke_limit):
|
||||
"""Run the main simulation loop."""
|
||||
strokes = 0
|
||||
|
||||
time_to_rampdown = ((run_freq - rampdown_speed) / motor_full_speed_hz) * decel_time
|
||||
print("Rampdown Time: {} s.".format(time_to_rampdown))
|
||||
distance_to_rampdown = 0.75 * (run_freq - rampdown_speed) * (motor_full_speed_rpm / motor_full_speed_hz) * (1.0 / 60.0) * time_to_rampdown * 0.5906
|
||||
print("Rampdown Distance: {} in.".format(distance_to_rampdown))
|
||||
|
||||
time_to_turnaround = (rampdown_speed / motor_full_speed_hz) * decel_time
|
||||
print("Turn Time: {} s.".format(time_to_turnaround))
|
||||
distance_to_turnaround = 0.75 * rampdown_speed * (motor_full_speed_rpm / motor_full_speed_hz) * (1.0 / 60.0) * time_to_turnaround * 0.5906
|
||||
print("Turn Distance: {} in.".format(distance_to_turnaround))
|
||||
|
||||
upper_rampdown_target = stroke_length - (upper_offset + distance_to_rampdown)
|
||||
upper_turnaround_target = stroke_length - (upper_offset + distance_to_turnaround)
|
||||
upper_offset_target = stroke_length - upper_offset
|
||||
lower_rampdown_target = lower_offset + distance_to_rampdown
|
||||
lower_turnaround_target = lower_offset + distance_to_turnaround
|
||||
|
||||
print("--")
|
||||
print("Targets")
|
||||
print("Lower Offset: {} in.".format(lower_offset))
|
||||
print("Upper Rampdown Target: {} in.".format(upper_rampdown_target))
|
||||
print("Turnaround Target: {} in.".format(upper_turnaround_target))
|
||||
print("Upper Offset: {} in.".format(upper_offset_target))
|
||||
print("Lower Rampdown Target: {} in.".format(lower_rampdown_target))
|
||||
print("Lower Turnaround Target: {} in.".format(lower_turnaround_target))
|
||||
print("--")
|
||||
|
||||
position = lower_offset
|
||||
time = 0.0
|
||||
|
||||
direction = 1
|
||||
starting_speed = 0.0 # Hz
|
||||
speed = starting_speed
|
||||
last_speed = speed
|
||||
|
||||
speed_array = []
|
||||
position_array = []
|
||||
time_array = []
|
||||
stroke_part = -1
|
||||
|
||||
while strokes != stroke_limit:
|
||||
last_speed = speed
|
||||
if direction == 1:
|
||||
if position < upper_rampdown_target:
|
||||
# below offset and rampdown distance, ramp up to setpoint, then run at setpoint
|
||||
if stroke_part != 0:
|
||||
stroke_part = 0
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed < run_freq:
|
||||
speed += (motor_full_speed_hz / accel_time) * dt
|
||||
if speed > run_freq:
|
||||
speed = run_freq
|
||||
elif position >= upper_rampdown_target and position < upper_turnaround_target:
|
||||
# between rampdown distance and turnaround distance, ramp to rampdown speed, then run at rampdown speed
|
||||
if stroke_part != 1:
|
||||
stroke_part = 1
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed > rampdown_speed:
|
||||
speed += -1.0 * (motor_full_speed_hz / decel_time) * dt
|
||||
elif position >= upper_turnaround_target:
|
||||
# above turnaround distance, ramp to 0 and change direction
|
||||
if stroke_part != 2:
|
||||
stroke_part = 2
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed > 0:
|
||||
speed += -1.0 * (motor_full_speed_hz / decel_time) * dt
|
||||
if speed <= 0:
|
||||
speed = 0
|
||||
direction = -1
|
||||
|
||||
elif direction == -1:
|
||||
if position > lower_rampdown_target:
|
||||
# above offset and rampdown distance, ramp up to setpoint (negative), then run at setpoint
|
||||
if stroke_part != 3:
|
||||
stroke_part = 3
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed > (-1.0 * run_freq):
|
||||
speed += -1.0 * (motor_full_speed_hz / accel_time) * dt
|
||||
if speed < (-1.0 * run_freq):
|
||||
speed = -1.0 * run_freq
|
||||
elif position > lower_turnaround_target and position <= lower_rampdown_target:
|
||||
# between turnaround distance and rampdown distance, ramp ro rampdown speed, then run at rampdown speed
|
||||
if stroke_part != 4:
|
||||
stroke_part = 4
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed < (-1.0 * rampdown_speed):
|
||||
speed += 1.0 * (motor_full_speed_hz / decel_time) * dt
|
||||
elif position <= lower_turnaround_target:
|
||||
# below turnaround distance, ramp to 0 and change direction
|
||||
if stroke_part != 5:
|
||||
stroke_part = 5
|
||||
print("{} - {}".format(stroke_part, position))
|
||||
if speed < 0:
|
||||
speed += 1.0 * (motor_full_speed_hz / decel_time) * dt
|
||||
if speed >= 0:
|
||||
speed = 0
|
||||
direction = 1
|
||||
strokes += 1
|
||||
|
||||
delta_x = (speed + last_speed) / 2.0 * (motor_full_speed_rpm / motor_full_speed_hz) * (dt / 60.0) * thread_pitch
|
||||
# delta_x = speed * (motor_full_speed_rpm / motor_full_speed_hz) * (dt / 60.0) * thread_pitch
|
||||
position += delta_x
|
||||
time += dt
|
||||
speed_array.append(speed * (motor_full_speed_rpm / motor_full_speed_hz))
|
||||
position_array.append(position)
|
||||
time_array.append(time)
|
||||
print("Time: {} sec., Position: {} in., Speed: {}".format(time, position, speed * (motor_full_speed_rpm / motor_full_speed_hz)))
|
||||
# sleep(dt)
|
||||
|
||||
SPM = 60.0 / (time / strokes)
|
||||
max_position = max(position_array)
|
||||
min_position = min(position_array)
|
||||
print("Max: {}, Min: {}".format(max_position, min_position))
|
||||
print("SPM: {}".format(SPM))
|
||||
fig, ax1 = plt.subplots()
|
||||
ax1.plot(time_array, speed_array, "b-")
|
||||
ax1.set_ylabel("RPM", color="b")
|
||||
ax2 = ax1.twinx()
|
||||
ax2.plot(time_array, position_array, "r-")
|
||||
ax2.set_ylabel("in.", color="r")
|
||||
fig.tight_layout()
|
||||
plt.show()
|
||||
|
||||
|
||||
sim(run_speed, rampdown_speed, 1)
|
||||
@@ -50,10 +50,9 @@ class Vacon100:
|
||||
|
||||
|
||||
def main():
|
||||
vacon_100 = Vacon100("10.20.4.27")
|
||||
vacon_100 = Vacon100("192.168.1.11")
|
||||
print(vacon_100.read_ACDCDriveOBj())
|
||||
|
||||
if __name__ == '__main__':
|
||||
import sys
|
||||
sys.exit(int(main() or 0))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user