summaryrefslogtreecommitdiffstats
path: root/docusaurus/src/pages/index.js
blob: 3c60c4d078d6ea188abd95cb5533eabcf7549b11 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import React from 'react';
import clsx from 'clsx';
import Layout from '@theme/Layout';
import Link from '@docusaurus/Link';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import useBaseUrl from '@docusaurus/useBaseUrl';
import styles from './styles.module.css';

const features = [
  {
    title: <>Complete Platform</>,
    imageUrl: 'img/complete-platform.svg',
    description: (
      <>
        PSP-UFU is a <b>cross-platform</b>, <b>multilingual</b>, <b>Free and Open-Source Software (FOSS)</b> with <b>advanced GUI (Graphical User Interface)</b> features and <b>CAD (Computer-Aided Design) tools</b> for electrical power system studies.
      </>
    ),
  },
  {
    title: <>Advanced CAD Features</>,
    imageUrl: 'img/advanced-cad.svg',
    description: (
      <>
        The software allows the construction of any electric <b>transmission network</b> and <b>control systems</b> through the deployment of visual elements.
      </>
    ),
  },
  {
    title: <>Easy Visualization</>,
    imageUrl: 'img/visualization.svg',
    description: (
      <>
        For the visualization of results, the program offers linked text elements in the main screen, voltage heatmap display, and also table and graph editors.
      </>
    ),
  },
  {
    title: <>Application</>,
    imageUrl: 'img/application.svg',
    description: (
      <>
        The PSP-UFU aims to provide efficient computer simulation tools for <b>research</b> and <b>education</b> purposes, in addition to <b>industrial applications</b> in electrical power systems.
      </>
    ),
  },
];

const studies = [
	{
    title: <>Power Flow</>,
    //imageUrl: 'img/undraw_docusaurus_react.svg',
    description: (
      <ul>
        <li>Newton-Raphson</li>
		<li>Gauss-Seidel</li>
		<li>Hybrid Newton-Gauss</li>
		<li>Three-phase induction motors included</li>
      </ul>
    ),
  },
  {
    title: <>Short-Circuit calculation</>,
    //imageUrl: 'img/undraw_docusaurus_react.svg',
    description: (
      <ul>
        <li>Balanced</li>
		<li>Unbalanced</li>
		<li>Short-Circuit power in all system buses</li>
      </ul>
    ),
  },
  {
    title: <>Harmonics</>,
    //imageUrl: 'img/undraw_docusaurus_react.svg',
    description: (
      <ul>
        <li>Harmonic voltages and THD (Total Harmonic Distortion) calculation</li>
		<li>Frequency scan</li>
      </ul>
    ),
  },
  {
    title: <>Transient and Dynamic Stability</>,
    //imageUrl: 'img/undraw_docusaurus_react.svg',
    description: (
      <ul>
        <li>Several synchronous machine models automatically selected</li>
		<li>Three-phase induction motors</li>
		<li>User-defined machine controls, exciters and prime moves created using block diagrams (Exciters, AVR, PSS, Hydro and Thermal turbines, Speed Governor, etc.)</li>
      </ul>
    ),
  },
];

function Feature({imageUrl, title, description}) {
  const imgUrl = useBaseUrl(imageUrl);
  return (
    <div className={clsx('col col--4', styles.feature)}>
      {imgUrl && (
        <div className="text--center">
          <img className={styles.featureImage} src={imgUrl} alt={title} />
        </div>
      )}
      <h3>{title}</h3>
      <p>{description}</p>
    </div>
  );
}

function Studies({imageUrl, title, description}) {
  const imgUrl = useBaseUrl(imageUrl);
  return (
    <div className={clsx('col col--4', styles.feature)}>
      {imgUrl && (
        <div className="text--center">
          <img className={styles.featureImage} src={imgUrl} alt={title} />
        </div>
      )}
      <h3>{title}</h3>
      {description}
    </div>
  );
}

function Home() {
  const context = useDocusaurusContext();
  const {siteConfig = {}} = context;
  return (
    <Layout
      title={`${siteConfig.title}`}
      description="Power System Platform">
      <header className={clsx('hero hero--primary', styles.heroBanner)}>
        <div className="container">
          <h1 className="hero__title">{siteConfig.title}</h1>
          <p className="hero__subtitle">{siteConfig.tagline}</p>
		  
		  <p><center>
		  <iframe src="https://ghbtns.com/github-btn.html?user=thales1330&repo=psp&type=star&count=true&size=large" frameborder="0" scrolling="0" width="130" height="30" title="GitHub"></iframe>
			</center></p>
		  <div className={styles.buttons}>
			<Link
              className={clsx(
                'button button--outline button--secondary button--lg',
                styles.getStarted,
              )}
              to={useBaseUrl('https://github.com/Thales1330/PSP/releases/latest')}>
              Download
            </Link>
          </div>
		  <div className={styles.buttons}>
			<Link
              className={clsx(
                'button button--outline button--secondary button--lg',
                styles.getStarted,
              )}
              to={useBaseUrl('docs/')}>
              User Guide
            </Link>
          </div>
		  <div className={styles.buttons}>
			<Link
              className={clsx(
                'button button--outline button--secondary button--lg',
                styles.getStarted,
              )}
              to={useBaseUrl('https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/Thales1330/PSP/tree/master/Project/data/samples')}>
              Samples
            </Link>
          </div>
        </div>
      </header>
      <main>
        {features && features.length > 0 && (
          <section className={styles.features}>
            <div className="container">
              <div className="row">
                {features.map((props, idx) => (
                  <Feature key={idx} {...props} />
                ))}
              </div>
            </div>
          </section>
        )}
		
		<div className="container">
		<h2>Studies Performed</h2>
		</div>
		
		{studies && studies.length > 0 && (
          <section className={styles.features}>
            <div className="container">
              <div className="row">
                {studies.map((props, idx) => (
                  <Studies key={idx} {...props} />
                ))}
              </div>
            </div>
          </section>
        )}
		
		<div className="container">
		<h2>Published Papers</h2>
			Further details can be found in the published papers:
			<blockquote cite="https://doi.org/10.1002/2050-7038.12185">
			Oliveira, T. L., Guimarães, G. C., & Silva, L. R. C. (2019). PSP-UFU: An open-source, graphical, and multiplatform software for power system studies. <i>International Transactions on Electrical Energy Systems</i>, e12185. doi: <a href="https://doi.org/10.1002/2050-7038.12185">10.1002/2050-7038.12185</a>
			</blockquote>
			<blockquote cite="https://doi.org/10.1177/0020720919879058">
			Oliveira, T. L., Guimarães, G. C., Silva, L. R., & Rezende, J. O. (2019). Power system education and research applications using free and open-source, graphical and multiplatform PSP-UFU software. <i>The International Journal of Electrical Engineering & Education</i>, 0020720919879058. doi: <a href="https://doi.org/10.1177/0020720919879058">10.1177/0020720919879058</a>
			</blockquote>
		</div>
		
		<div className="container">
		<h2>Code Documentation</h2>
		<p>
			All detailed descriptions of the source-code can be found at <b><a href="https://thales1330.github.io/PSP/doxygen/html/index.html">Online Documentation</a></b>, generated by <a href="http://www.doxygen.org/">Doxygen</a>.
		</p>
		</div>
		
		<div className="container">
		<h2>Screenshots</h2>
			<center>
			<iframe src="gallery.html" style={{position: 'relative', width: '100%', height: '56.25vw', display: 'block', overflow: 'hidden', border: 'none'}}> 
				Your browser doesnt support the this feature. 
			</iframe>
			</center>

		</div>
      </main>
    </Layout>
  );
}

export default Home;