-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create 0053_alter_chpinputs_macrs_bonus_fraction_and_more.py
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
reoptjl/migrations/0053_alter_chpinputs_macrs_bonus_fraction_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Generated by Django 4.0.7 on 2024-03-04 20:45 | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('reoptjl', '0052_settings_solver_name'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='chpinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.6, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
migrations.AlterField( | ||
model_name='chpinputs', | ||
name='macrs_option_years', | ||
field=models.IntegerField(blank=True, choices=[(0, 'Zero'), (5, 'Five'), (7, 'Seven')], default=5, help_text='Duration over which accelerated depreciation will occur. Set to zero to disable'), | ||
), | ||
migrations.AlterField( | ||
model_name='coldthermalstorageinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.6, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
migrations.AlterField( | ||
model_name='electricstorageinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.6, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
migrations.AlterField( | ||
model_name='generatorinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.0, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
migrations.AlterField( | ||
model_name='ghpinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.6, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
migrations.AlterField( | ||
model_name='hotthermalstorageinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.6, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
migrations.AlterField( | ||
model_name='pvinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.6, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
migrations.AlterField( | ||
model_name='steamturbineinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.0, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', null=True, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
migrations.AlterField( | ||
model_name='windinputs', | ||
name='macrs_bonus_fraction', | ||
field=models.FloatField(blank=True, default=0.6, help_text='Percent of upfront project costs to depreciate in year one in addition to scheduled depreciation', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(1)]), | ||
), | ||
] |