Class band_clutch
Class band_clutch
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Panel
|
+----band_clutch
- class band_clutch
- extends Panel
Applying pressure to the servo tightens the band clutch for the 1-2 shift
-
delta_pos
- servo position delta
-
delta_vel
- servo velocity delta
-
dx
-
-
f1
- servo apply feed pressure
-
f2
- servo apply release pressure
-
f3
- servo preload
-
f4
- reserved
-
plot8
-
-
plot9
-
-
pos
- servo position
-
valve12
-
-
vel
- servo velocity
-
x
-
-
band_clutch()
-
band_clutch() The band clutch is activated for a 1-2 shift
-
deriv(int)
- Calculate changes in position and velocity in servo
-
init(double, s12_valve)
- Set initial velocity and position for servo
-
intgrt(int)
- integrate the position and velocity increments for the servo
in order to apply the band clutch
-
paint(Graphics)
- Paint the window graphics.
dx
protected double dx[]
x
protected double x[]
plot8
public Plot_Object plot8
plot9
public Plot_Object plot9
f1
public double f1
- servo apply feed pressure
f2
public double f2
- servo apply release pressure
f3
public double f3
- servo preload
f4
public double f4
- reserved
pos
public double pos
- servo position
vel
public double vel
- servo velocity
delta_vel
public double delta_vel
- servo velocity delta
delta_pos
public double delta_pos
- servo position delta
valve12
protected s12_valve valve12
band_clutch
protected band_clutch()
- band_clutch() The band clutch is activated for a 1-2 shift
init
public void init(double vpos,
s12_valve s12)
- Set initial velocity and position for servo
deriv
public void deriv(int step)
- Calculate changes in position and velocity in servo
- Parameters:
- step - the derivative step
intgrt
public void intgrt(int step)
- integrate the position and velocity increments for the servo
in order to apply the band clutch
- Parameters:
- step - the integral step
paint
public void paint(Graphics g)
- Paint the window graphics. Display the pressure changes(red color gets
darker in areas of higher pressure) and the servo movement in the main window.
- Overrides:
- paint in class Component