blob: 020faa4c513c649899a1ced06a18261c49ecdec2 (
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
33
34
35
36
37
38
39
40
41
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
|