ashhal/Power_Systems_Mini-Consultant
0
1{2 "faults": {3 "symmetrical_faults": {4 "description": "Three-phase faults where all phases are equally affected by the same impedance",5 "characteristics": "Balanced conditions, phasor relationships maintained, easiest to analyze",6 "analysis_method": "Single-phase equivalent circuit with positive sequence impedance",7 "fault_current": "I_fault = V_pre_fault / Z_total",8 "percentage": "5-10% of all power system faults"9 },10 "unsymmetrical_faults": {11 "line_to_ground": {12 "description": "Most common fault type in power systems",13 "percentage": "70-80% of all faults",14 "analysis": "Uses symmetrical components method",15 "fault_current": "I_fault = 3 * V_a / (Z1 + Z2 + Z0)",16 "causes": "Insulation failure, lightning, tree contact"17 },18 "line_to_line": {19 "description": "Fault between two phases without ground involvement",20 "percentage": "15-20% of all faults",21 "fault_current": "I_fault = sqrt(3) * V_pre_fault / (Z1 + Z2)",22 "characteristics": "No zero sequence current"23 },24 "double_line_to_ground": {25 "description": "Two phases faulted to ground",26 "percentage": "Less than 5% but can be severe",27 "analysis": "Complex symmetrical component analysis required"28 }29 }30 },31 "protection": {32 "overcurrent_protection": {33 "description": "Most basic form of protection based on current magnitude",34 "types": ["Instantaneous", "Definite time", "Inverse time"],35 "coordination": "Time-current characteristic curves must be coordinated",36 "settings": {37 "pickup_current": "1.25 to 1.5 times full load current",38 "time_dial": "Adjusted for coordination"39 }40 },41 "differential_protection": {42 "description": "High-speed protection based on current difference",43 "applications": ["Transformers", "Generators", "Motors", "Buses"],44 "principle": "Kirchhoff's current law - sum of currents should be zero",45 "advantages": ["Fast operation", "High selectivity", "Sensitive"]46 },47 "distance_protection": {48 "description": "Impedance-based protection for transmission lines",49 "zones": {50 "zone_1": "80-90% of protected line, instantaneous",51 "zone_2": "120% of line + 50% next line, time delayed",52 "zone_3": "Backup protection, longer time delay"53 },54 "characteristics": ["Mho", "Impedance", "Reactance", "Quadrilateral"]55 },56 "pilot_protection": {57 "description": "Communication-assisted protection schemes",58 "types": ["Pilot wire", "Power line carrier", "Microwave", "Fiber optic"],59 "schemes": ["Blocking", "Tripping", "Transfer tripping"]60 }61 },62 "standards": {63 "IEEE_standards": {64 "IEEE_C37": {65 "title": "Circuit Breakers and Switchgear Standards",66 "subtopics": ["C37.2 - Device numbers", "C37.04 - Rating structure", "C37.010 - Application guide"]67 },68 "IEEE_1547": {69 "title": "Standard for Interconnection of Distributed Energy Resources",70 "scope": "Grid interconnection requirements for DER"71 },72 "IEEE_519": {73 "title": "Harmonic Control in Electric Power Systems",74 "focus": "Harmonic distortion limits and measurement"75 },76 "IEEE_242": {77 "title": "Protection and Coordination of Industrial and Commercial Power Systems",78 "nickname": "IEEE Buff Book"79 }80 },81 "IEC_standards": {82 "IEC_61850": {83 "title": "Communication protocols for intelligent electronic devices at electrical substations",84 "importance": "Modern substation automation standard"85 },86 "IEC_60909": {87 "title": "Short-circuit currents in three-phase AC systems",88 "scope": "Calculation methods for short-circuit analysis"89 },90 "IEC_60255": {91 "title": "Measuring relays and protection equipment",92 "coverage": "All aspects of protective relaying"93 }94 }95 },96 "power_flow": {97 "description": "Steady-state analysis of power systems",98 "methods": ["Gauss-Seidel", "Newton-Raphson", "Fast Decoupled Load Flow"],99 "applications": ["System planning", "Operation", "Contingency analysis"],100 "bus_types": {101 "slack_bus": "Voltage magnitude and angle specified",102 "PV_bus": "Real power and voltage magnitude specified",103 "PQ_bus": "Real and reactive power specified"104 }105 },106 "stability": {107 "types": {108 "steady_state": "Ability to maintain synchronism under gradual load changes",109 "transient": "Response to large disturbances like faults",110 "dynamic": "Response to small disturbances over longer periods"111 },112 "analysis_methods": ["Equal area criterion", "Time domain simulation", "Direct methods"],113 "improvement_methods": ["Fast fault clearing", "Power system stabilizers", "FACTS devices"]114 },115 "transformers": {116 "protection": {117 "differential": "Primary protection method",118 "overcurrent": "Backup protection",119 "gas_protection": "Buchholz relay for internal faults",120 "thermal_protection": "Winding and oil temperature monitoring"121 },122 "testing": {123 "routine_tests": ["Turns ratio", "Polarity", "Insulation resistance"],124 "type_tests": ["Temperature rise", "Impulse", "Short circuit"]125 }126 },127 "transmission_lines": {128 "parameters": {129 "resistance": "Conductor material and cross-section dependent",130 "inductance": "Magnetic field energy storage",131 "capacitance": "Electric field energy storage",132 "conductance": "Leakage current path"133 },134 "models": {135 "short_line": "Less than 80 km, R and L only",136 "medium_line": "80-250 km, nominal pi or T model",137 "long_line": "Greater than 250 km, distributed parameter model"138 }139 },140 "power_quality": {141 "issues": {142 "harmonics": "Non-linear loads cause harmonic distortion",143 "voltage_sags": "Temporary voltage reductions",144 "voltage_swells": "Temporary voltage increases",145 "flicker": "Voltage fluctuations causing light flicker",146 "interruptions": "Complete loss of supply voltage"147 },148 "standards": ["IEEE 519", "IEC 61000 series", "EN 50160"],149 "mitigation": ["Filters", "UPS", "Voltage regulators", "FACTS devices"]150 },151 "renewable_integration": {152 "challenges": {153 "variability": "Wind and solar output varies with weather",154 "grid_stability": "Reduced inertia from conventional generation",155 "power_quality": "Harmonics from inverter-based resources"156 },157 "solutions": {158 "energy_storage": "Battery systems for smoothing and backup",159 "smart_inverters": "Grid support functions",160 "forecasting": "Prediction of renewable output"161 }162 },163 "formulas": {164 "fault_analysis": {165 "three_phase_fault": "I_fault = V_prefault / Z_total",166 "line_to_ground": "I_fault = 3 * V_a / (Z1 + Z2 + Z0)",167 "line_to_line": "I_fault = sqrt(3) * V_prefault / (Z1 + Z2)"168 },169 "power_flow": {170 "real_power": "P = |V1| * |V2| * sin(δ) / X",171 "reactive_power": "Q = |V1| * (|V1| - |V2| * cos(δ)) / X"172 },173 "transmission_lines": {174 "characteristic_impedance": "Zc = sqrt(Z/Y)",175 "propagation_constant": "γ = sqrt(Z*Y)"176 }177 },178 "exam_topics": {179 "fundamental": ["Circuit analysis", "AC power", "Three-phase systems"],180 "intermediate": ["Fault analysis", "Protection", "Power flow", "Stability"],181 "advanced": ["FACTS", "Renewable integration", "Smart grid", "Power electronics"]182 }183}