Skip to content

Commit 3cac428

Browse files
feat(transforms): reintroduce Fortescue struct and constructor
1 parent cc3b5d2 commit 3cac428

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/engine/transforms/fortescue.jl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
struct Fortescue <: AbstractTransformFormulation
2+
tol::BASE_FLOAT
3+
end
4+
# Convenient constructor with default tolerance
5+
Fortescue(; tol::BASE_FLOAT = BASE_FLOAT(1e-4)) = Fortescue(tol)
6+
get_description(::Fortescue) = "Fortescue (symmetrical components)"
7+
18
"""
29
$(TYPEDSIGNATURES)
310

0 commit comments

Comments
 (0)