-
Notifications
You must be signed in to change notification settings - Fork 6
/
SimpleInterestCalculator.php
154 lines (138 loc) · 3.59 KB
/
SimpleInterestCalculator.php
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
<?php
namespace FinanCalc\Calculators {
use Exception;
use FinanCalc\Interfaces\Calculator\CalculatorAbstract;
use FinanCalc\Utils\Lambdas;
use FinanCalc\Utils\MathFuncs;
use FinanCalc\Utils\Time\TimeSpan;
use FinanCalc\Utils\Time\TimeUtils;
/**
* Class SimpleInterestCalculator
* @package FinanCalc\Calculators
*/
class SimpleInterestCalculator extends CalculatorAbstract
{
// amount of principal = 'P'
protected $principal;
// annual interest rate = 'i'
protected $annualInterestRate;
// the time, which converted to years = 't'
/** @var TimeSpan */
protected $time;
/**
* @param $principal
* @param $annualInterestRate
* @param TimeSpan $time
*/
public function __construct(
$principal,
$annualInterestRate,
TimeSpan $time
) {
$this->setPrincipal($principal);
$this->setAnnualInterestRate($annualInterestRate);
$this->setTime($time);
}
/**
* @param $principal
*/
public function setPrincipal($principal)
{
$this->setProperty("principal", $principal, Lambdas::checkIfPositive());
}
/**
* @param $annualInterestRate
*/
public function setAnnualInterestRate($annualInterestRate)
{
$this->setProperty("annualInterestRate", $annualInterestRate, Lambdas::checkIfPositive());
}
/**
* @param TimeSpan $time
*/
public function setTime(TimeSpan $time)
{
$this->setProperty("time", $time, Lambdas::checkIfPositive());
}
/**
* @return string
*/
public function getPrincipal()
{
return $this->principal;
}
/**
* @return string
*/
public function getAnnualInterestRate()
{
return $this->annualInterestRate;
}
/**
* @return TimeSpan
*/
public function getTime()
{
return $this->time;
}
/**
* @return string
*/
public function getTimeInYears()
{
return $this->time->toYears();
}
/**
* @return string
*/
public function getTimeInMonths()
{
return $this->time->toMonths();
}
/**
* @return string
*/
public function getTimeInDays()
{
return $this->time->toDays();
}
/**
* @return string
*/
public function getInterestNumber()
{
return MathFuncs::div(
MathFuncs::mul(
$this->principal,
$this->getTimeInDays()
),
100
);
}
/**
* @return string
* @throws Exception
*/
public function getInterestDivisor()
{
return MathFuncs::div(
TimeUtils::getCurrentDayCountConvention()['days_in_a_year'],
MathFuncs::mul(
$this->annualInterestRate,
100
)
);
}
/**
* @return string
*/
public function getInterestAmount()
{
// n = P*i*t = IN/ID
return MathFuncs::div(
$this->getInterestNumber(),
$this->getInterestDivisor()
);
}
}
}