-
Notifications
You must be signed in to change notification settings - Fork 2
/
ElevatorCarPiston.java
204 lines (177 loc) · 4.54 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package Undergraduate_Project;
import Undergraduate_Project.Piston;
public class ElevatorCarPiston {
private int currentFloor;
private int lastFloor;
private int destinationFloor;
public int[] path = new int[5];
//General object for piston
public Object piston = new Object();
//Time variables for pistonMove()
public long begin_time = System.nanoTime();
public double up_time = 0.0;
public double down_time = 0.0;
//Position variable for pistonMove()
public double floorPosition = destinationFloor * 10.0;
public double currentPosition = 0.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() {
/*currentFloor = (int)(this.getCurrentPosition()/10.0) + 1;
return currentFloor;
*/
double value = 1.6;
double x = this.getCurrentPosition();
if(x == 0){
return 1;
}
if(x == value*6.25){
return 2;
}
if(x == value*12.5){
return 3;
}
if(x == value*18.75){
return 4;
}
if(x == value*25){
return 5;
}
return 0;
}
public int c_display() {
currentFloor = (int)(this.getCurrentPosition()/10.0) + 1;
return currentFloor;
}
public double path_pos(int i){
return path[i] *10;
}
public int[] array(){
return path;
}
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+1;
//System.out.println("Destination Floor: "+destinationFloor);
floorPosition = destinationFloor *10.0 - 10;
}
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() throws InterruptedException{
if(currentPosition < floorPosition){
piston = object.MOVING_UP;
//System.out.println("Set to up");
//Thread.sleep(1000);
up_time = time_sec();
down_time = time_sec();
this.pistonMove();
//System.out.println("Position: "+currentPosition);
}
else if(currentPosition > floorPosition){
piston = object.MOVING_DOWN;
//Thread.sleep(1000);
up_time = time_sec();
down_time = time_sec();
this.pistonMove();
}
else{
piston = object.STATIONARY;
}
}
//Calculates the position of the Piston with respect to time and speed
public double pistonMove() throws InterruptedException{
Thread.sleep(1000);
if(piston == object.MOVING_UP){
//System.out.println("moving up");
up_time = time_sec();
//up_time++
//System.out.println(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{
up_time = time_sec();
down_time = time_sec();
}
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;
}
}