Opened 6 years ago
Closed 6 years ago
#5089 closed defect (fixed)
NFTyping.typeClassSections fails without error message
Reported by: | Francesco Casella | Owned by: | Per Östlund |
---|---|---|---|
Priority: | high | Milestone: | 2.0.0 |
Component: | New Instantiation | Version: | |
Keywords: | Cc: | Rüdiger Franke |
Description
Please check PowerSystems.Examples.AC3ph.Elementary.Sensor. NFTyping.typeClassSections fails with the following message:
Error: Internal error Instantiation of PowerSystems.Examples.AC3ph.Elementary.Sensor failed with no error message.
Change History (2)
comment:1 by , 6 years ago
Cc: | added |
---|
comment:2 by , 6 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fixed in f2391c7.
The reason was due to a function call
mod(h, 3)
whereh
was of the typeInteger[3]
. This lead to two vectorized matches, since mod is overloaded for both Integer and Real, which the NF couldn't handle.