diff --git a/README.md b/README.md index 5e61d71..c2b4585 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ pattern of `$rate->get{Unit}Per{Unit}` for the respective units. Example using F ### Flow -This class represent the amount of Volume over a period of Time. +This class represent the amount of Volume flowed over a period of Time. ```php $flow = new Flow(new Volume(gallon: 5), new Time(hour: 1)); @@ -165,6 +165,20 @@ $flow->getGallonPerMinute(); // 0.083333333333333 ___ +### Boil + +This class represent the amount of Volume boiled over a period of Time. + +```php +$boil = new Boil(new Volume(gallon: 5), new Time(hour: 1)); + +$boil->getGallonPerHour(); // 5 + +$boil->getGallonPerMinute(); // 0.083333333333333 +``` + +___ + ## Calculate A library of calculations that can be used with various Unitz classes.