Skip to content
Snippets Groups Projects
Commit 80bbbc20 authored by Daniel Lorych's avatar Daniel Lorych :cookie:
Browse files

Fix incorrect calculation

parent b8fae4fa
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ namespace Helios.Source
{
double costPerWatt;
costPerWatt = this.InstallationCost * this.PowerOutput;
costPerWatt = this.InstallationCost / this.PowerOutput;
this.CostPerWatt = costPerWatt;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment