예제 #1
0
파일: constr_FIX.c 프로젝트: ttinoco/PFNET
void CONSTR_FIX_init(Constr* c) {

  // Init
  CONSTR_set_data(c,NULL);
}
예제 #2
0
파일: constr_FIX.c 프로젝트: entriken/PFNET
void CONSTR_FIX_init(Constr* c) {

  // Init
  CONSTR_set_name(c,"variable fixing");
  CONSTR_set_data(c,NULL);
}
예제 #3
0
void CONSTR_PAR_GEN_Q_init(Constr* c) {
  
  // Init
  CONSTR_set_data(c,NULL);
}
예제 #4
0
void CONSTR_LOAD_PF_init(Constr* c) {

  // Init
  CONSTR_set_name(c,"load constant power factor");
  CONSTR_set_data(c,NULL);
}
예제 #5
0
void CONSTR_DC_FLOW_LIM_init(Constr* c) {
  
  // Init
  CONSTR_set_data(c,NULL);
}
예제 #6
0
void CONSTR_BOUND_init(Constr* c) {

  // Init
  CONSTR_set_Hcounter(c,NULL,0);
  CONSTR_set_data(c,NULL);
}
예제 #7
0
void CONSTR_PAR_GEN_P_init(Constr* c) {

  // Init
  CONSTR_set_name(c,"generator active power participation");
  CONSTR_set_data(c,NULL);
}