-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCarBrakeModel.java
More file actions
59 lines (45 loc) · 1.12 KB
/
Copy pathCarBrakeModel.java
File metadata and controls
59 lines (45 loc) · 1.12 KB
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
package Model;
public class CarBrakeModel {
private double PeakForce;
private double Power;
private double Weight;
private double ContinousPowerDissipation;
private double Fade;
private double Drag;
public double getPeakForce() {
return PeakForce;
}
public void setPeakForce(double peakForce) {
PeakForce = peakForce;
}
public double getPower() {
return Power;
}
public void setPower(double power) {
Power = power;
}
public double getWeight() {
return Weight;
}
public void setWeight(double weight) {
Weight = weight;
}
public double getContinousPowerDissipation() {
return ContinousPowerDissipation;
}
public void setContinousPowerDissipation(double continousPowerDissipation) {
ContinousPowerDissipation = continousPowerDissipation;
}
public double getFade() {
return Fade;
}
public void setFade(double fade) {
Fade = fade;
}
public double getDrag() {
return Drag;
}
public void setDrag(double drag) {
Drag = drag;
}
}