Skip to content

Commit

Permalink
derConsumer.html: removed fixed compensation inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
astronobri committed Jun 4, 2024
1 parent d8d98a7 commit 60bf0bf
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions omf/models/derConsumer.html
Original file line number Diff line number Diff line change
Expand Up @@ -235,16 +235,11 @@
<input type="text" id="rateCompensation" name="rateCompensation" value="{{allInputDataDict.rateCompensation}}" pattern="^\d+\.?\d*?$" min="0" required="required"/>
</div>
<div class="shortInput">
<label class="tooltip">Fixed Compensation Amount ($)<span class="classic">A fixed dollar amount (e.g. A one-time enrollment reward, or yearly bonus compensation to the member-consumer.) </span></label>
<input type="text" id="fixedCompensation" name="fixedCompensation" value="{{allInputDataDict.fixedCompensation}}" pattern="^\d+\.?\d*?$" min="0" required="required">
</div>
<div class="shortInput">
<label class="tooltip">Fixed Compensation Frequency<span class="classic">If there is a fixed compensation amount, how often is it awarded?</span></label>
<select id="fixedCompensationFrequency" name="fixedCompensationFrequency">
<option value="0" {{ 'selected' if allInputDataDict.fixedCompensationFrequency == '0' }}>One-time only</option>
<option value="1" {{ 'selected' if allInputDataDict.fixedCompensationFrequency == '1' }}>Yearly</option>
</select>
<label class="tooltip">Maximum BESS discharge (%)<span class="classic">The maximum percentage of BESS total charge used for discharging. Most programs designate up to 80% of total charge, leaving the member with at least 20% charge.</span></label>
<input type="text" id="maxBESSDischarge" name="maxBESSDischarge" value="{{allInputDataDict.maxBESSDischarge}}" pattern="^\d+\.?\d*?$" min="0" required="required"/>
</div>


{{ omfModelButtons }}
</form>

Expand Down

0 comments on commit 60bf0bf

Please sign in to comment.