summaryrefslogtreecommitdiffstats
path: root/docusaurus/sidebars.js
blob: d1da014abd2a9616c28fba49c59963068ba858f1 (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
module.exports = {
  docs: {
    'Introduction': [
		'aboutPSP',
		'installation',
		'mainScreen',
		'cadTools'
	],
		
    'Power Element Editor': [
		'powerEditor',
		{
			type: 'category',
			label: 'Power Elements',
			items: ['bus', 'line', 'transformer', 'load', 'capacitor', 'inductor', 'harmSource', 'syncGenerator', 'syncMotor', 'indMotor'],
		},
	],
    'Control Element Editor': [
	'controlEditor',
		{
			type: 'category',
			label: 'Control Elements',
			items: ['io', 'transferFunction', 'sum', 'multiplier', 'divider', 'exponential', 'limiter', 'rateLimiter', 'const', 'gain', 'mathExpression'],
		},
	],
    'Simulations': [
		'powerFlow',
		'fault',
		'harmonics',
		'stability',
		'simulationConfig',
	],
	'Data Visualization' : [
		'text',
		'tabularReport',
		'graphViewer',
		'heatmap'
	],
  },
};