Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions julia_src/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -932,9 +932,9 @@ uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"

[[deps.REopt]]
deps = ["ArchGDAL", "CSV", "CoolProp", "DataFrames", "Dates", "DelimitedFiles", "HTTP", "JLD", "JSON", "JuMP", "LinDistFlow", "LinearAlgebra", "Logging", "MathOptInterface", "Requires", "Roots", "Statistics", "TestEnv"]
git-tree-sha1 = "f9fd5a8419a3a1c057403fb34fd4f47c15afe28e"
git-tree-sha1 = "e87732914598f85a8ba0ad3226df540b84dd1ec7"
uuid = "d36ad4e8-d74a-4f7a-ace1-eaea049febf6"
version = "0.54.0"
version = "0.54.1"

[[deps.Random]]
deps = ["SHA"]
Expand Down
18 changes: 18 additions & 0 deletions reoptjl/migrations/0104_cstinputs_can_waste_heat.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.0.7 on 2025-09-25 20:01

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('reoptjl', '0103_merge_20250917_2157'),
]

operations = [
migrations.AddField(
model_name='cstinputs',
name='can_waste_heat',
field=models.BooleanField(blank=True, default=True, help_text='Boolean indicator if CST waste (not use) heat relative to its potential production', null=True),
),
]
6 changes: 6 additions & 0 deletions reoptjl/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -8966,6 +8966,12 @@ class CSTInputs(BaseModel, models.Model):
blank=True,
help_text="Boolean indicator if CST can only supply hot TES"
)
can_waste_heat = models.BooleanField(
default=True,
null=True,
blank=True,
help_text="Boolean indicator if CST waste (not use) heat relative to its potential production"
)
emissions_factor_lb_CO2_per_mmbtu = models.FloatField(
validators=[
MinValueValidator(0),
Expand Down