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 /includes/umdeck.hpp |
Initial commit.
Diffstat (limited to 'includes/umdeck.hpp')
-rw-r--r-- | includes/umdeck.hpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/includes/umdeck.hpp b/includes/umdeck.hpp new file mode 100644 index 0000000..020faa4 --- /dev/null +++ b/includes/umdeck.hpp @@ -0,0 +1,42 @@ +//-*- mode: c++; indent-tabs-mode: t; coding: utf-8; show-trailing-whitespace: t -*- + +// file umdeck.hpp + +#ifndef _UMDECK_HPP +#define _UMDECK_HPP + +#include <iostream> +#include <string> +#include <fstream> +#include <ostream> +#include <sstream> +#include <cstdlib> + +namespace umcom { + + extern int nSRoot2; + extern int nSRoot3; + extern int nOmegRF; + extern int nInpu; + extern int nNumBus; + extern int nNCLTot; + extern int nInitUM; + // + extern int pPTheta[ 3 ][ 3 ]; + extern int pZTheVR[ 3 ][ 3 ]; + extern int pVInp[ 40 ]; + extern int pZTheVs[ 40 ]; + extern int pUmCur[ 40 ]; + extern int pCon[ 10 ]; + extern int pDumVec[ 40 ]; + extern int pDumMat[ 3 ][ 3 ]; + extern int pDate[ 2 ]; + extern int pClock[ 2 ]; + extern int pNDum[ 40 ]; + // + extern std::string pBUSUM[ 50 ]; +} + +#endif // __UMDECK_HPP + +// end of file umdeck.hpp |