diff options
author | Angelo Rossi <angelo.rossi.homelab@gmail.com> | 2023-06-21 12:04:16 +0000 |
---|---|---|
committer | Angelo Rossi <angelo.rossi.homelab@gmail.com> | 2023-06-21 12:04:16 +0000 |
commit | b18347ffc9db9641e215995edea1c04c363b2bdf (patch) | |
tree | f3908dc911399f1a21e17d950355ee56dc0919ee /sources/umdeck.cpp |
Initial commit.
Diffstat (limited to 'sources/umdeck.cpp')
-rw-r--r-- | sources/umdeck.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sources/umdeck.cpp b/sources/umdeck.cpp new file mode 100644 index 0000000..90f0a83 --- /dev/null +++ b/sources/umdeck.cpp @@ -0,0 +1,32 @@ +//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- + +// file umdeck.cpp + +#include "umdeck.hpp" + +namespace umcom { + + int nSRoot2; + int nSRoot3; + int nOmegRF; + int nInpu; + int nNumBus; + int nNCLTot; + int nInitUM; + // + int pPTheta[ 3 ][ 3 ]; + int pZTheVR[ 3 ][ 3 ]; + int pVInp[ 40 ]; + int pZTheVs[ 40 ]; + int pUmCur[ 40 ]; + int pCon[ 10 ]; + int pDumVec[ 40 ]; + int pDumMat[ 3 ][ 3 ]; + int pDate[ 2 ]; + int pClock[ 2 ]; + int pNDum[ 40 ]; + // + std::string pBUSUM[ 50 ]; +} + +// end of file umdeck.cpp |