00001 // $Id: line.h,v 1.10 2008/02/13 22:48:04 natet Exp $ 00002 00003 #ifndef _OVERHEADLINECONDUCTOR_H 00004 #define _OVERHEADLINECONDUCTOR_H 00005 00006 #include "powerflow.h" 00007 #include "line.h" 00008 00009 class overhead_line_conductor { 00010 public: 00011 static CLASS *pclass; 00012 static CLASS *oclass; 00013 static overhead_line_conductor *defaults; 00014 00015 public: 00016 double geometric_mean_radius; 00017 double resistance; 00018 LINERATINGS winter, summer; 00019 00020 overhead_line_conductor(MODULE *mod); 00021 int create(void); 00022 int isa(char *classname); 00023 }; 00024 00025 #endif