Ask Your Question

zju_gan's profile - activity

2018-12-11 11:03:27 -0500 received badge  Taxonomist
2015-12-28 07:17:21 -0500 answered a question dynamics - variables - time

Dear Javier,have you solved this problem? I meet this problem too.I hope you can give me some tips.Thank you!

2015-12-07 13:49:02 -0500 received badge  Notable Question (source)
2015-12-07 13:49:02 -0500 received badge  Popular Question (source)
2015-12-07 13:49:02 -0500 received badge  Famous Question (source)
2015-12-02 03:58:46 -0500 answered a question the function of conec.for in user written model

://psspy.org/psse-help-forum/question/1375/psse-fortran_sharing-variables-between-modules/

this answer tell us how to conect two modules in pss/e .however ,if i want to conect two modules ,such A and B.The modules output is a variable U_SCLCAP,and i put it in var(L),how can i use the var(l) in B module?

2015-12-02 03:42:16 -0500 received badge  Editor (source)
2015-12-02 03:40:34 -0500 asked a question the function of conec.for in user written model

hello all: I have written a model which role is to raise voltage of generator when there is a bus fault. and it is called by conec.for. when i finish the "DYRE" ,the conec.for is like below:

    SUBROUTINE CONEC
C

  INCLUDE 'COMON4.INS'

  CALL GE_SCLCAP       (     1,    47,    17,    18)

C

  RETURN

  END

Do i need to write some codes to tell the pss/e about the output of " GESCLCAP" in conec.for ? I have defined variable USCLCAP in program GESCLCAP,and i need to use variable USCLCAP in user written program 'GE_AVR' which is a program of excitation system model .

When i need to use the variable USCLCAP in GEAVR, how can i get its value in GE_AVR?

thank you!

2015-12-02 02:57:30 -0500 received badge  Famous Question (source)
2015-10-26 09:37:58 -0500 received badge  Notable Question (source)
2015-10-26 09:37:58 -0500 received badge  Popular Question (source)
2015-10-11 06:15:32 -0500 asked a question how to distinguish ISORCE from ITERM in PSS/E

hi ,i am learning pss/e now.When i make program in fortran ,i meet the arithmetical expression like Ve=kpVt+j(ki+kpXL)It,and Vt,It are complex number.It is the terminal current of generator and Vt is the terminal voltage of generator.how can i get the It? below are the program

    VTRM=ZSORCE(I)*ISORCE(I)*SBASE/MBASE  !get the Vt?,Isorce is the injection current of generator
   S_MPLX=CMPLX(PELM,QELM)           !s=p+jQ
   S_MPLXGE=CONJG(S_MPLX)            ! s*=p-jQ take the conjugate
   VTRMGE=CONJG(VTRM)                      !take the conjugate
   ITRM=S_MPLXGE/(1.732*VTRMGE)      !get the It
2015-10-10 01:42:25 -0500 received badge  Famous Question (source)
2015-10-10 01:42:25 -0500 received badge  Notable Question (source)
2015-10-01 08:14:29 -0500 received badge  Popular Question (source)
2015-10-01 08:14:29 -0500 received badge  Famous Question (source)
2015-10-01 08:14:29 -0500 received badge  Notable Question (source)
2015-09-28 02:30:10 -0500 asked a question question about lv gate

hi,i am learning uer-written model .when i write program about" st6b" model ,i meet a "lv gate "and "hv gate ".I don't know it's implication and how it works .Any help will be appreciated.Thanks

2015-09-25 22:42:01 -0500 answered a question question about initialization Ifd in mode1 in pss/e

i have gotten the answers! but ,i don't know how to set the Vref. can anyone explain it's function? thanks !

2015-09-25 22:37:40 -0500 received badge  Popular Question (source)
2015-09-24 21:06:08 -0500 asked a question question about initialization Ifd in mode1 in pss/e

hi ,i am learning user-written model.Now i meet a model in PSS/E,which name is ESST4B. When i am going to write program in fortran ( in mode=1),i don't know how to initialize the Ifd. Any help would be appreciated.