blob: 90f0a8332f56770c33eff88ea123cfee2590179b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
|