import React from 'react';
import clsx from 'clsx';
import Layout from '@theme/Layout';
import Link from '@docusaurus/Link';
import Translate, {translate} from '@docusaurus/Translate';
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 cross-platform, multilingual, Free and Open-Source Software (FOSS) with advanced GUI (Graphical User Interface) features and CAD (Computer-Aided Design) tools for electrical power system studies.
>
),
},
{
title: <>Advanced CAD Features>,
imageUrl: 'img/advanced-cad.svg',
description: (
<>
The software allows the construction of any electric transmission network and control systems 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 research and education purposes, in addition to industrial applications in electrical power systems.
>
),
},
];
const studies = [
{
title: <>Power Flow>,
//imageUrl: 'img/undraw_docusaurus_react.svg',
description: (
- Newton-Raphson
- Gauss-Seidel
- Hybrid Newton-Gauss
- Three-phase induction motors included
),
},
{
title: <>Short-Circuit calculation>,
//imageUrl: 'img/undraw_docusaurus_react.svg',
description: (
- Balanced
- Unbalanced
- Short-Circuit power in all system buses
),
},
{
title: <>Harmonics>,
//imageUrl: 'img/undraw_docusaurus_react.svg',
description: (
- Harmonic voltages and THD (Total Harmonic Distortion) calculation
- Frequency scan
),
},
{
title: <>Transient and Dynamic Stability>,
//imageUrl: 'img/undraw_docusaurus_react.svg',
description: (
- Several synchronous machine models automatically selected
- Three-phase induction motors
- User-defined machine controls, exciters and prime moves created using block diagrams (Exciters, AVR, PSS, Hydro and Thermal turbines, Speed Governor, etc.)
),
},
];
function Feature({imageUrl, title, description}) {
const imgUrl = useBaseUrl(imageUrl);
return (
{imgUrl && (
)}
{title}
{description}
);
}
function Studies({imageUrl, title, description}) {
const imgUrl = useBaseUrl(imageUrl);
return (
{imgUrl && (
)}
{title}
{description}
);
}
function Home() {
const context = useDocusaurusContext();
const {siteConfig = {}} = context;
return (
{features && features.length > 0 && (
{features.map((props, idx) => (
))}
)}
Studies Performed
{studies && studies.length > 0 && (
{studies.map((props, idx) => (
))}
)}
Published Papers
Further details can be found in the published papers:
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. International Transactions on Electrical Energy Systems, e12185. doi: 10.1002/2050-7038.12185
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. The International Journal of Electrical Engineering & Education, 0020720919879058. doi: 10.1177/0020720919879058
Screenshots
);
}
export default Home;