Replies: 2 comments 1 reply
-
Hi @ekatef , thanks for sharing this in the discussion. To explain a bit more, please check the picture below (but forget about all the given names). When you have AC power, the reactance So what happens if you only consider DC power? You basically have only straight lines. No sinusoidal curves. So there is practically no influence of capacitance I think what would make sense is to import a "standard linetype" from PyPSA and set the value |
Beta Was this translation helpful? Give feedback.
-
In general, we should not forget that the physics behind the modeling are the time equations. So, for DC lines main basically only resistances are of major concerns. That surely implicy the resistance to transmit power, and, eventually, the losses towards the ground as air and isolators do have a high but not infinity resistance. However, this latter term can be neglected, that's why we can focus mainly on the r. Thank @ekatef for the clarification. If you experience the issue again while preparing the PR, you may notify to PyPSA community in github. |
Beta Was this translation helpful? Give feedback.
-
We have implemented two options for HVDC representation: as PyPSA Links components or as PyPSA Lines. The link representation follows the approach used in PyPSA-Europe. The line representation implies that we use a special case of the AC transmission line by setting the line parameters via the standard line type. The question I'm struggling a bit is how to set these parameters properly.
The Line component in PyPSA implements a classic PI model with the line parameters defined via the active resistance
r
, the inductivity resistancex
and the capacitancec
(set per length unit). We adopt this model to represent the DC transmission lines by setting some artificial values forx
andc
: thex
should be close to zero (exact0
leads to numerical troubles) whilec
should be very big (if I understand it correctly).The questions I'm not sure about:
How much are small enough and big enough for
x
andc
, respectivelly?If I'm not mistaken there are some capacitance effects for DC lines as well. Does it make sense trying to account this? Or can we be sure that it can be neglected for the problems valid for PyPSA?
@davide-f, @pz-max, @Ekaterina-Vo I would be very grateful for looking into it :)
Beta Was this translation helpful? Give feedback.
All reactions