forked from counterman1128/Undergraduate_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ElevatorCarPiston.java
154 lines (131 loc) · 3.5 KB
/
ElevatorCarPiston.java
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package Undergraduate_Project;
import Undergraduate_Project.Piston;
public class ElevatorCarPiston {
private int currentFloor;
private int lastFloor;
private int destinationFloor;
//General object for piston
public Object piston = new Object();
//Time variables for pistonMove()
public long begin_time = System.nanoTime();
public double up_time = 0;
public double down_time = 0;
//Position variable for pistonMove()
public double floorPosition = destinationFloor * 10 - 10;
public double currentPosition = 0;
//Speed of elevator system
public double elevator_speed = 2.0;
//Different states for piston object
//public enum Piston{MOVING_UP, STATIONARY, MOVING_DOWN}
public Piston object;
// Default Constructor
ElevatorCarPiston() {
currentFloor = 1;
lastFloor = 2;
destinationFloor = currentFloor;
piston = object.STATIONARY;
}
// ElevatorCarPist(int, int)
ElevatorCarPiston(int initialFloor, int maxFloor) {
currentFloor = initialFloor;
lastFloor = maxFloor;
destinationFloor = initialFloor;
}
// Accessor
public int getCurrentFloor() {
return currentFloor;
}
public int getDestinationFloor() {
return destinationFloor;
}
public double getCurrentPosition(){
return currentPosition;
}
public double getFloorPosition(){
return floorPosition;
}
// Mutator
public void setCurrnetFloor(int floor) {
currentFloor = floor;
}
public void setDestinationFloor(int floor) {
destinationFloor = floor;
}
public int movePistonToDestinationFloor() {
if (destinationFloor <= lastFloor){
currentFloor = destinationFloor;
return currentFloor;
} else {
currentFloor = lastFloor;
return currentFloor;
}
}
public int movePistonToFloor(int targetFloor) {
if (targetFloor <= lastFloor) {
currentFloor = targetFloor;
return currentFloor;
} else {
currentFloor = lastFloor;
return currentFloor;
}
}
public boolean sentPistonToFirstFloor() {
currentFloor = 1;
return true;
}
public void setCurrentPosition(double x){
currentPosition = x;
}
//Mutator for Piston State
public void setPistonState(Piston state){
object = state;
}
//Getter for Piston State
public Object getPistonState(){
return piston;
}
public void resetSpeed(){
elevator_speed = 2.0;
}
public void setSpeed(double value){
elevator_speed = value;
}
public double getSpeed(){
return elevator_speed;
}
public void piston_main(){
if(currentPosition < floorPosition)
piston = object.MOVING_UP;
else if(currentPosition > floorPosition)
piston = object.MOVING_DOWN;
else
piston = object.STATIONARY;
while(currentPosition != floorPosition){
this.pistonMove();
}
}
//Calculates the position of the Piston with respect to time and speed
public double pistonMove(){
if(piston == object.MOVING_UP){
up_time = time_sec();
currentPosition = currentPosition + elevator_speed * Math.abs((up_time - down_time));
}else if(piston == object.MOVING_DOWN){
down_time = time_sec();
currentPosition = currentPosition - elevator_speed * Math.abs((up_time - down_time));
}else{
/*
* May need to add functions if piston stationary state breaks calculations
*/
}
return currentPosition;
}
//Converts system time to seconds
public double time_sec(){
long elap_time = System.nanoTime() - begin_time;
return (double)(elap_time / 1000000000);
}
public void deacceleration(){//Prototype function for elevator deacceleration
if (Math.abs(currentPosition-floorPosition) <= 2.0)
elevator_speed = elevator_speed/2.0;
}
}