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

Variable Index

 o delta_pos
servo position delta
 o delta_vel
servo velocity delta
 o dx
 o f1
servo apply feed pressure
 o f2
servo apply release pressure
 o f3
servo preload
 o f4
reserved
 o plot8
 o plot9
 o pos
servo position
 o valve12
 o vel
servo velocity
 o x

Constructor Index

 o band_clutch()
band_clutch() The band clutch is activated for a 1-2 shift

Method Index

 o deriv(int)
Calculate changes in position and velocity in servo
 o init(double, s12_valve)
Set initial velocity and position for servo
 o intgrt(int)
integrate the position and velocity increments for the servo in order to apply the band clutch
 o paint(Graphics)
Paint the window graphics.

Variables

 o dx
  protected double dx[]
 o x
  protected double x[]
 o plot8
  public Plot_Object plot8
 o plot9
  public Plot_Object plot9
 o f1
  public double f1
servo apply feed pressure
 o f2
  public double f2
servo apply release pressure
 o f3
  public double f3
servo preload
 o f4
  public double f4
reserved
 o pos
  public double pos
servo position
 o vel
  public double vel
servo velocity
 o delta_vel
  public double delta_vel
servo velocity delta
 o delta_pos
  public double delta_pos
servo position delta
 o valve12
  protected s12_valve valve12

Constructors

 o band_clutch
  protected band_clutch()
band_clutch() The band clutch is activated for a 1-2 shift

Methods

 o init
  public void init(double vpos,
                   s12_valve s12)
Set initial velocity and position for servo
 o deriv
  public void deriv(int step)
Calculate changes in position and velocity in servo
Parameters:
step - the derivative step
 o 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
 o 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