Skip to content

Commit

Permalink
update max annual_kwh
Browse files Browse the repository at this point in the history
mining operations may use > 1,000 GWh
  • Loading branch information
adfarth committed Mar 29, 2024
1 parent 96411c1 commit 8f92f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reoptjl/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ class ElectricLoadInputs(BaseModel, models.Model):
annual_kwh = models.FloatField(
validators=[
MinValueValidator(1),
MaxValueValidator(100000000)
MaxValueValidator(10000000000)
],
null=True, blank=True,
help_text=("Annual site energy consumption from electricity, in kWh, used to scale simulated default building "
Expand Down

0 comments on commit 8f92f8e

Please sign in to comment.