Ask Your Question

tiagosantos's profile - activity

2016-04-28 10:32:05 -0500 commented answer How to incorporate LVRT in wind machines, PSS/E?

First just to clarify, the LHVRT (or VTGTPAT in psse) its optional for wt3g2. To implement a windturbine you must have a WT3G2, WT3E, WT3T and WT3P. The others models are optional. you can see more info here psspy.org/psse-help-forum/question/2659/how-to-incorporate-lvrt-in-wind-machines-psse/

2016-04-26 11:43:25 -0500 answered a question How to incorporate LVRT in wind machines, PSS/E?

short answer, yes. I suggest this page, it helped me alot:link text

2015-04-30 03:51:07 -0500 received badge  Editor (source)
2015-04-30 03:49:44 -0500 answered a question How to calculate data in PSS/E and export it to Excel?

To extract data from .out files to excel datasheet I use this script in python: (simply copy the code between the lines made of '#' to a .py extension file and run it, you should change the path to pss/e bin path and should run it from the same folder of your .out file, alse change the variable "name" to the name of your .out (in this case the file was "x.out" ))

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # #

import os,sys

sys.path.insert(0,'C:\Program Files (x86)\PTI\PSSEXplore33\PSSBIN')

os.environ['PATH'] = 'C:\Program Files (x86)\PTI\PSSEXplore33\PSSBIN'+';'+os.environ['PATH']

import excelpy

import dyntools

import time

name='x';

data=str(time.localtime().tmmday)+" do "+str(time.localtime().tmmon);

outfile = dyntools.CHNF(name+'.out')

shorttitle, chaniddict, chandatadict = outfile.getdata()

xlsfile=name+'.xlsx';

xl = excelpy.workbook(xlsfile, mode='w');

outfile.xlsout(sheet=name,overwritesheet=True);

xl.close();

xl.save();

xl.close();

# # # # # # # # # # # # # # # # # # # # # # # # # #

2015-02-26 03:10:13 -0500 answered a question while Dynamic simulation, Generators are converted as Voltage source with impedance...

Hi there

Unfortunately there is no way to reverse the process. Once you have converted the generators you cannot perform a power flow anymore. My advice to you is, from nowone, always maintain a copy of the files before the conversion of the generator/loads.