Skip to content

Commit

Permalink
Add placeholder field amachint for PSS/E data
Browse files Browse the repository at this point in the history
  • Loading branch information
cuihantao committed Mar 16, 2024
1 parent b5df676 commit 7ea376e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions andes/models/static/pv.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ def __init__(self):
self.ra = NumParam(default=0.0, info='armature resistance', tex_name='r_a')
self.xs = NumParam(default=0.3, info='armature reactance', tex_name='x_s')

# `amachint`: data holder for PSS/E file; not yet used in ANDES
# 0: conventional
# 1: renewable standard QT/ QB limits
# 2: renewable +, - Qlimits based on WPF
# 3: renewable, fixed Qlimit based on WPF
# 4: Infeed machine
self.amachint = NumParam(default=0,
info='Machine ctrl. mode [PSS/E]',
tex_name=r'a_{machint}',
export=False,
)


class PVModel(Model):
"""
Expand Down

0 comments on commit 7ea376e

Please sign in to comment.