SlideShare une entreprise Scribd logo
1  sur  18
Télécharger pour lire hors ligne
Capacitor Modeling Using FEMM
By Nathan Wendt
May 1, 2015
- 1 -
Abstract
The purpose of this study was to analyze the electric field effects of various capacitor
designs. These included a spherical capacitor, a cylindrical capacitor, and a GIS dead-end (a
cylindrical capacitor with a hemispherical end). We analyzed both the electric potential and the
electric field produced within the capacitors and compared results from a FE computer
simulation to the theoretical values based on ideal cases.
- 2 -
Contents
Introduction ..................................................................................................................................................3
Results...........................................................................................................................................................4
Spherical Capacitor .......................................................................................................................................5
Cylindrical Capacitor .....................................................................................................................................7
GIS Dead-End Capacitor................................................................................................................................9
Name Plate Rating from Dead-end Dielectric Strength..............................................................................11
Conclusion...................................................................................................................................................13
Reference....................................................................................................................................................14
Appendix A (Additions for Spherical)..........................................................................................................15
Appendix B (Additions for Cylindrical)........................................................................................................16
Appendix C (Additions for GIS)....................................................................................................................17
- 3 -
Introduction
This report includes analyses from three different capacitors including a description of
the capacitors behavior, figures of the electric potential field within each capacitor, and a
MATLAB plot comparing the data generated from FEMM 4.2 to the theoretical expectations.
Theory would expect that the V field within a long, cylindrical capacitor or a spherical capacitor
to linearly decrease radially outward. Our finite element data shows slight deviations from
these expected results, most notably half way between the positive and negative voltage
terminals of the capacitors.
The theoretical equations used in this report are as follows:
For spherical capacitors:
(1) 𝑉(𝑟) =
𝑉0(
1
𝑟
−
1
𝑏
)
(
1
𝑎
−
1
𝑏
)
(2) 𝐸 =
𝑉0
𝑏−𝑎
(
𝑎𝑏
𝑟2) ȃr
For cylindrical capacitors:
(3) 𝑉𝑟 =
𝑉0
ln( 𝑏
𝑎⁄ )
ln( 𝑏
𝑟⁄ )
(4) 𝐸 =
𝑉0
ln( 𝑏
𝑎⁄ )
∗ 1
𝑟⁄ ȃr
- 4 -
Results
The following sections reviews the results of this study.
- 5 -
Spherical Capacitor
The simulated spherical capacitor behaved nearly identical to the theoretical model. In
this experiment, the inner spherical conductor contains a constant voltage (5000 v) while the
outer spherical conductor is grounded. Theory would expect the V-field between the capacitors
to be inversely proportionate to the radius as described by equation (1).
Figure 1. FEMM model of axisymmetric spherical capacitor. V-field is shown in color with equipotential
lines. The red line is the path along which data was compared.
- 6 -
The theoretical and analytical data were almost perfectly in sync:
Figure 2. Theoretical vs FEMM results of spherical capacitor.
The two values overlapped nearly perfectly showing that the FEMM software accurately
depicts the V-field.
- 7 -
Cylindrical Capacitor
The second phase examined a cylindrical capacitor. The analyses occurred at the center
of the capacitor, far from the fringe effects occurring at the edges. Again, the inner cylinder
represents a constant voltage (5000 v) while the outer sheath is grounded.
Figure 3. FEMM model of axisymmetric cylindrical capacitor. V-field is shown in color with equipotential
lines. Data was taken along a radial path at the center of the capacitor.
- 8 -
Again, the theoretical and analytical data were very close:
Figure 4. Theoretical vs FEMM results for cylindrical capacitor.
The comparison of the two solutions shows minor differences between the theoretical
and analytical values for V-field. This likely could be due to the theoretical assumption of an
infinitely long cylindrical capacitor whereas the simulated capacitor was finite in length.
- 9 -
GIS Dead-End Capacitor
The GIS dead-end capacitor behaved very similar to the spherical and cylindrical
capacitors (as can be expected). In this study, the V-field was analyzed along two different
paths. Along the z-axis from the tip of the hemispherical end and radially outward near the
center of the cylinder. The theoretical equation for a spherical capacitor was used for the first
path while the theoretical equation for a cylindrical capacitor was used for the second.
Figure 5. FEMM model of axisymmetric GIS dead-end. V-field is shown in color with equipotential lines.
- 10 -
The theoretical and analytical models matched up near perfectly for both the spherical
and cylindrical approximations:
Figure 6. Theoretical vs analytical V-field values. Both the spherical and cylindrical approximations nearly
matched the FEMM simulation.
The comparison for the GIS dead-end was near perfect. This shows that the spherical
and cylindrical approximations can accurately deduce the V-field even when the shape of the
conductor is dissimilar to the ideal representation.
- 11 -
Name Plate Rating from Dead-end Dielectric Strength
In the final section of the results, the GIS dead-end E-field is evaluated to find the
maximum safe operating voltage for the dielectric. Our dielectric is capable of operating in
electric fields up to E* = 7.35x106 V/m. Due to the proportionality of E to voltage, the ratios of
E/v are equal. This yields:
(5) 𝑉∗
= (
𝐸∗
𝐸 𝑀𝐴𝑋
)𝑉1
Figure 7. Table of values, equations, and descriptions for elements used in determining the
maximum safe operating voltage and the rated center-pin-to-sheath voltage.
- 12 -
The max E-field was found at the tip of the hemisphere in the GIS using the FEMM
software. This yielded:
EMAX = 1.9389x105 V/m
Using equation (5) with the values of EMAX, E*, and V1 = 5000 V, we can calculate V*.
V* = 189.540 kV
Using a safety factor of 25% we can calculate the maximum operational voltage, VOPERATE
as:
VOPERATE = 142.156 kV
and:
VRATED,RMS = 100.519 kV
- 13 -
Conclusion
In conclusion, the similar results between the analytical FEMM software and the
theoretical equations served to validate each other and prove that both were acceptable
methods for determining the V-field strength inside of various axisymmetric capacitors. The GIS
dead-end took it a step further and showed that even with large dissimilarities to the ideal
shape the theoretical approximations yield accurate results. The analysis of the maximum E-
field allowed us to determine the exact value for breakdown voltage, at which point the
dielectric fails. Finally, with a safety factor of 25%, the Voperate came out to be 142.2 kV.
- 14 -
Reference
P. Pedrow. EE331. Class Lecture, Topic: "Dielectrics and Capacitors." SH 7, Doctorate of
Engineering, Washington State University, Pullman, Washington, Apr. 22, 2015.
- 15 -
Appendix A (Additions for Spherical)
Below is the MATLAB code used to plot the theoretical vs analytical V-field to radius:
function V = sphere_potential(r)
if r > 0.05 && r < 0.1
V = 5000*((1/r)-10)/10;
else
V = 0;
end
r = 0 : 0.00333 : 0.5;
V = zeros(length(r));
for jr = 1 : length(r)
V(jr) = shpere_potential(r(jr));
end
fileID = fopen('voltage_data1.txt','r');
spec = '%f %f';
sizeV_femm = [2 Inf];
V_femm = fscanf(fileID,spec,sizeV_femm)';
plot(r,V,'g',V_femm(1:150,1),V_femm(1:150,2),'--r')
title('Potential (V) vs Radius(r)')
legend('Theoretical','FEMM Simulation')
xlabel('r')
ylabel('V')
- 16 -
Appendix B (Additions for Cylindrical)
MATLAB code:
function V = cylinder_potential(r)
if r > 0.05 && r < 0.1
V = 5000*log(0.1/r)/log(2);
else
V = 0;
end
r = 0 : 0.00333 : 0.5;
V = zeros(length(r));
for jr = 1 : length(r)
V(jr) = cylinder_potential(r(jr));
end
fileID = fopen('voltage_data2.txt','r');
spec = '%f %f';
sizeV_femm = [2 Inf];
V_femm = fscanf(fileID,spec,sizeV_femm)';
plot(r,V,'g',V_femm(1:150,1),V_femm(1:150,2),'--r')
title('Potential (V) vs Radius(r)')
legend('Theoretical','FEMM Simulation')
xlabel('r')
ylabel('V')
- 17 -
Appendix C (Additions for GIS)
MATLAB code:
function V = cylinder_potential(r)
if r > 0.05 && r < 0.1
V = 5000*log(0.1/r)/log(2);
else
V = 0;
End
function V = sphere_potential(r)
if r > 0.05 && r < 0.1
V = 5000*((1/r)-10)/10;
else
V = 0;
End
r = 0 : 0.0001 : 0.15;
V_sphere = zeros(length(r));
V_cyl = zeros(length(r));
for jr = 1 : length(r)
V_sphere(jr) = sphere_potential(r(jr));
end
for ir = 1 : length(r)
V_cyl(ir) = cylinder_potential(r(ir));
end
file1ID = fopen('voltage_data3_horizontal.txt','r');
file2ID = fopen('voltage_data3.txt','r');
spec = '%f %f';
sizeV_femm_sphere = [2 Inf];
sizeV_femm_cyl = [2 Inf];
V_femm_sphere = fscanf(file2ID,spec,sizeV_femm_sphere)';
V_femm_cyl = fscanf(file1ID,spec,sizeV_femm_cyl)';
plot(r,V_sphere,'c',V_femm_sphere(1:150,1),V_femm_sphere(1:150,2),'--
r',r,V_cyl,'g',V_femm_cyl(1:150,1),V_femm_cyl(1:150,2),'b--')
title('Potential (V) vs Radius(r)')
legend('Theoretical Sphere','FEMM Simulation Sphere', 'Theoretical Cylincer',
'FEMM Cylinder')
xlabel('r')
ylabel('V')

Contenu connexe

Tendances

Principles of RF Microwave Power Measurement
Principles of RF Microwave Power MeasurementPrinciples of RF Microwave Power Measurement
Principles of RF Microwave Power MeasurementRobert Kirchhoefer
 
Chen Zeng (201375033)
Chen Zeng (201375033)Chen Zeng (201375033)
Chen Zeng (201375033)Chen Zeng
 
Network analysis of rf and microwave circuits
Network analysis of rf and microwave circuitsNetwork analysis of rf and microwave circuits
Network analysis of rf and microwave circuitsShankar Gangaju
 
Study of microwave set up, active and passive components
Study of microwave set up, active and passive componentsStudy of microwave set up, active and passive components
Study of microwave set up, active and passive componentsVELAMMAL ENGINEERING COLLEGE
 
Reflex klystron amplifier , microwave klystron amplifier
Reflex klystron amplifier , microwave klystron amplifierReflex klystron amplifier , microwave klystron amplifier
Reflex klystron amplifier , microwave klystron amplifierKamal Bhagat
 
Phase modulation
Phase modulationPhase modulation
Phase modulationavocado1111
 
Comparator, Zero Crossing Detector and schmitt trigger using opamp
Comparator, Zero Crossing Detector and schmitt trigger using opampComparator, Zero Crossing Detector and schmitt trigger using opamp
Comparator, Zero Crossing Detector and schmitt trigger using opampDivyanshu Rai
 
Allenbradley Control Logix PLC Network Architecture
Allenbradley Control Logix PLC Network  ArchitectureAllenbradley Control Logix PLC Network  Architecture
Allenbradley Control Logix PLC Network ArchitectureDEEPAK GORAI
 
Industrial communication protocol
Industrial communication protocolIndustrial communication protocol
Industrial communication protocolASWATHYSURESH18
 
Analog modulation
Analog modulationAnalog modulation
Analog modulationvish0110
 
Dual Slope ADC.pptx
Dual Slope ADC.pptxDual Slope ADC.pptx
Dual Slope ADC.pptxhepzijustin
 
Travelling Wave Tube
Travelling Wave TubeTravelling Wave Tube
Travelling Wave TubeBinita Khua
 

Tendances (20)

Principles of RF Microwave Power Measurement
Principles of RF Microwave Power MeasurementPrinciples of RF Microwave Power Measurement
Principles of RF Microwave Power Measurement
 
Chen Zeng (201375033)
Chen Zeng (201375033)Chen Zeng (201375033)
Chen Zeng (201375033)
 
Network analysis of rf and microwave circuits
Network analysis of rf and microwave circuitsNetwork analysis of rf and microwave circuits
Network analysis of rf and microwave circuits
 
Study of microwave set up, active and passive components
Study of microwave set up, active and passive componentsStudy of microwave set up, active and passive components
Study of microwave set up, active and passive components
 
Radar ppt
Radar pptRadar ppt
Radar ppt
 
Reflex klystron amplifier , microwave klystron amplifier
Reflex klystron amplifier , microwave klystron amplifierReflex klystron amplifier , microwave klystron amplifier
Reflex klystron amplifier , microwave klystron amplifier
 
Phase modulation
Phase modulationPhase modulation
Phase modulation
 
Comparator, Zero Crossing Detector and schmitt trigger using opamp
Comparator, Zero Crossing Detector and schmitt trigger using opampComparator, Zero Crossing Detector and schmitt trigger using opamp
Comparator, Zero Crossing Detector and schmitt trigger using opamp
 
Allenbradley Control Logix PLC Network Architecture
Allenbradley Control Logix PLC Network  ArchitectureAllenbradley Control Logix PLC Network  Architecture
Allenbradley Control Logix PLC Network Architecture
 
Microwave components
Microwave componentsMicrowave components
Microwave components
 
Switching systems lecture2
Switching  systems lecture2Switching  systems lecture2
Switching systems lecture2
 
Line coding
Line codingLine coding
Line coding
 
Mwr ppt priyanka
Mwr ppt priyankaMwr ppt priyanka
Mwr ppt priyanka
 
Biomedical projects
Biomedical projectsBiomedical projects
Biomedical projects
 
Vsat systems
Vsat systemsVsat systems
Vsat systems
 
Industrial communication protocol
Industrial communication protocolIndustrial communication protocol
Industrial communication protocol
 
Analog modulation
Analog modulationAnalog modulation
Analog modulation
 
Dual Slope ADC.pptx
Dual Slope ADC.pptxDual Slope ADC.pptx
Dual Slope ADC.pptx
 
Travelling Wave Tube
Travelling Wave TubeTravelling Wave Tube
Travelling Wave Tube
 
Walkie talkie
Walkie talkieWalkie talkie
Walkie talkie
 

En vedette

Plan Fee Levelization - Going "Back to the Future"
Plan Fee Levelization - Going "Back to the Future"Plan Fee Levelization - Going "Back to the Future"
Plan Fee Levelization - Going "Back to the Future"Chad A. Noorani, QKA
 
Grandiôse*&Trésor Lumineuse
Grandiôse*&Trésor LumineuseGrandiôse*&Trésor Lumineuse
Grandiôse*&Trésor LumineuseMaria Karevskaya
 
Ensayo Alicia Ortiz
Ensayo Alicia OrtizEnsayo Alicia Ortiz
Ensayo Alicia Ortizalicia ortiz
 
Bandpass Differentiator FM Receiver
Bandpass Differentiator FM ReceiverBandpass Differentiator FM Receiver
Bandpass Differentiator FM ReceiverNathan Wendt
 
MIS Chapter V- Enhancing Collaboration Using Web 2.0
MIS Chapter V- Enhancing Collaboration Using Web 2.0MIS Chapter V- Enhancing Collaboration Using Web 2.0
MIS Chapter V- Enhancing Collaboration Using Web 2.0Ducy Romero
 
Профстандарты
ПрофстандартыПрофстандарты
ПрофстандартыJetAktiv-c
 
Fortis Trade presentation EN
Fortis Trade presentation ENFortis Trade presentation EN
Fortis Trade presentation ENFilip Karaivanov
 
Propuesta del uso de las tic en la gestion
Propuesta del uso de las tic en la gestionPropuesta del uso de las tic en la gestion
Propuesta del uso de las tic en la gestionGloribel Ortiz
 
Formación de alumnos para el futuro
Formación de alumnos para el futuroFormación de alumnos para el futuro
Formación de alumnos para el futuroGloribel Ortiz
 
Ficheros morosos
Ficheros morososFicheros morosos
Ficheros morososSeoane16
 
Formacion de los alumnos para el futuro
Formacion de los alumnos para el futuroFormacion de los alumnos para el futuro
Formacion de los alumnos para el futuroGloribel Ortiz
 

En vedette (20)

Plan Fee Levelization - Going "Back to the Future"
Plan Fee Levelization - Going "Back to the Future"Plan Fee Levelization - Going "Back to the Future"
Plan Fee Levelization - Going "Back to the Future"
 
lab12_NathanWendt
lab12_NathanWendtlab12_NathanWendt
lab12_NathanWendt
 
Grandiôse*&Trésor Lumineuse
Grandiôse*&Trésor LumineuseGrandiôse*&Trésor Lumineuse
Grandiôse*&Trésor Lumineuse
 
Ensayo Alicia Ortiz
Ensayo Alicia OrtizEnsayo Alicia Ortiz
Ensayo Alicia Ortiz
 
Bandpass Differentiator FM Receiver
Bandpass Differentiator FM ReceiverBandpass Differentiator FM Receiver
Bandpass Differentiator FM Receiver
 
FinalReport
FinalReportFinalReport
FinalReport
 
Curt CV
Curt CVCurt CV
Curt CV
 
MIS Chapter V- Enhancing Collaboration Using Web 2.0
MIS Chapter V- Enhancing Collaboration Using Web 2.0MIS Chapter V- Enhancing Collaboration Using Web 2.0
MIS Chapter V- Enhancing Collaboration Using Web 2.0
 
Профстандарты
ПрофстандартыПрофстандарты
Профстандарты
 
Fortis Trade presentation EN
Fortis Trade presentation ENFortis Trade presentation EN
Fortis Trade presentation EN
 
Taller 3 11 2
Taller 3 11 2Taller 3 11 2
Taller 3 11 2
 
Ensayo
EnsayoEnsayo
Ensayo
 
Propuesta del uso de las tic en la gestion
Propuesta del uso de las tic en la gestionPropuesta del uso de las tic en la gestion
Propuesta del uso de las tic en la gestion
 
Question 3
Question 3Question 3
Question 3
 
Diapositivas
DiapositivasDiapositivas
Diapositivas
 
Comunicacion
ComunicacionComunicacion
Comunicacion
 
Formación de alumnos para el futuro
Formación de alumnos para el futuroFormación de alumnos para el futuro
Formación de alumnos para el futuro
 
Cuadro comparativo
Cuadro comparativoCuadro comparativo
Cuadro comparativo
 
Ficheros morosos
Ficheros morososFicheros morosos
Ficheros morosos
 
Formacion de los alumnos para el futuro
Formacion de los alumnos para el futuroFormacion de los alumnos para el futuro
Formacion de los alumnos para el futuro
 

Similaire à Final_Report_NathanWendt_11401887

Analysis Of Transmission Line Using MATLAB Software
Analysis Of Transmission Line Using MATLAB SoftwareAnalysis Of Transmission Line Using MATLAB Software
Analysis Of Transmission Line Using MATLAB SoftwareAllison Thompson
 
Project Stuff Real cool
Project Stuff Real coolProject Stuff Real cool
Project Stuff Real coolJulia London
 
Parametric Transient Thermo-Electrical PSPICE Model For A Single And Dual Con...
Parametric Transient Thermo-Electrical PSPICE Model For A Single And Dual Con...Parametric Transient Thermo-Electrical PSPICE Model For A Single And Dual Con...
Parametric Transient Thermo-Electrical PSPICE Model For A Single And Dual Con...IJERDJOURNAL
 
Effect of Mobility on (I-V) Characteristics of Gaas MESFET
Effect of Mobility on (I-V) Characteristics of Gaas MESFET Effect of Mobility on (I-V) Characteristics of Gaas MESFET
Effect of Mobility on (I-V) Characteristics of Gaas MESFET IJECEIAES
 
Effect of Mobility on (I-V) Characteristics of Gaas MESFET
Effect of Mobility on (I-V) Characteristics of Gaas MESFET Effect of Mobility on (I-V) Characteristics of Gaas MESFET
Effect of Mobility on (I-V) Characteristics of Gaas MESFET Yayah Zakaria
 
simulation and implementation of a spwm inverter pulse for educational purposes
simulation and implementation of a spwm inverter pulse for educational purposessimulation and implementation of a spwm inverter pulse for educational purposes
simulation and implementation of a spwm inverter pulse for educational purposesEleftheriosSamiotis1
 
Design of a Sample and Hold Circuit using Rail to Rail Low Voltage Compact Op...
Design of a Sample and Hold Circuit using Rail to Rail Low Voltage Compact Op...Design of a Sample and Hold Circuit using Rail to Rail Low Voltage Compact Op...
Design of a Sample and Hold Circuit using Rail to Rail Low Voltage Compact Op...IJERA Editor
 
Modeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorModeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorANURAG YADAV
 
Solar Module Modeling, Simulation And Validation Under Matlab / Simulink
Solar Module Modeling, Simulation And Validation Under Matlab / SimulinkSolar Module Modeling, Simulation And Validation Under Matlab / Simulink
Solar Module Modeling, Simulation And Validation Under Matlab / SimulinkIJERA Editor
 
Permanent Fault Location in Distribution System Using Phasor Measurement Unit...
Permanent Fault Location in Distribution System Using Phasor Measurement Unit...Permanent Fault Location in Distribution System Using Phasor Measurement Unit...
Permanent Fault Location in Distribution System Using Phasor Measurement Unit...IJECEIAES
 
Honor Seminar ECE 494 Final Report
Honor Seminar ECE 494 Final ReportHonor Seminar ECE 494 Final Report
Honor Seminar ECE 494 Final ReportJuan J Faria Briceno
 
Analysis and Modeling of Transformerless Photovoltaic Inverter Systems
Analysis and Modeling of Transformerless Photovoltaic Inverter SystemsAnalysis and Modeling of Transformerless Photovoltaic Inverter Systems
Analysis and Modeling of Transformerless Photovoltaic Inverter SystemsIJMER
 
Reduction of Total Harmonic Distortion in Cascaded H-Bridge Inverter by Patte...
Reduction of Total Harmonic Distortion in Cascaded H-Bridge Inverter by Patte...Reduction of Total Harmonic Distortion in Cascaded H-Bridge Inverter by Patte...
Reduction of Total Harmonic Distortion in Cascaded H-Bridge Inverter by Patte...IJECEIAES
 
Transformador excercises para compartir
Transformador excercises para compartirTransformador excercises para compartir
Transformador excercises para compartirJehAlvitezVzquez
 

Similaire à Final_Report_NathanWendt_11401887 (20)

Analysis Of Transmission Line Using MATLAB Software
Analysis Of Transmission Line Using MATLAB SoftwareAnalysis Of Transmission Line Using MATLAB Software
Analysis Of Transmission Line Using MATLAB Software
 
Project Stuff Real cool
Project Stuff Real coolProject Stuff Real cool
Project Stuff Real cool
 
Parametric Transient Thermo-Electrical PSPICE Model For A Single And Dual Con...
Parametric Transient Thermo-Electrical PSPICE Model For A Single And Dual Con...Parametric Transient Thermo-Electrical PSPICE Model For A Single And Dual Con...
Parametric Transient Thermo-Electrical PSPICE Model For A Single And Dual Con...
 
Effect of Mobility on (I-V) Characteristics of Gaas MESFET
Effect of Mobility on (I-V) Characteristics of Gaas MESFET Effect of Mobility on (I-V) Characteristics of Gaas MESFET
Effect of Mobility on (I-V) Characteristics of Gaas MESFET
 
Effect of Mobility on (I-V) Characteristics of Gaas MESFET
Effect of Mobility on (I-V) Characteristics of Gaas MESFET Effect of Mobility on (I-V) Characteristics of Gaas MESFET
Effect of Mobility on (I-V) Characteristics of Gaas MESFET
 
Comparative Study of Five-Level and Seven-Level Inverter Controlled by Space ...
Comparative Study of Five-Level and Seven-Level Inverter Controlled by Space ...Comparative Study of Five-Level and Seven-Level Inverter Controlled by Space ...
Comparative Study of Five-Level and Seven-Level Inverter Controlled by Space ...
 
simulation and implementation of a spwm inverter pulse for educational purposes
simulation and implementation of a spwm inverter pulse for educational purposessimulation and implementation of a spwm inverter pulse for educational purposes
simulation and implementation of a spwm inverter pulse for educational purposes
 
Design of a Sample and Hold Circuit using Rail to Rail Low Voltage Compact Op...
Design of a Sample and Hold Circuit using Rail to Rail Low Voltage Compact Op...Design of a Sample and Hold Circuit using Rail to Rail Low Voltage Compact Op...
Design of a Sample and Hold Circuit using Rail to Rail Low Voltage Compact Op...
 
Modeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorModeling of Self Excited Induction Generator
Modeling of Self Excited Induction Generator
 
F1102033540
F1102033540F1102033540
F1102033540
 
Solar Module Modeling, Simulation And Validation Under Matlab / Simulink
Solar Module Modeling, Simulation And Validation Under Matlab / SimulinkSolar Module Modeling, Simulation And Validation Under Matlab / Simulink
Solar Module Modeling, Simulation And Validation Under Matlab / Simulink
 
Permanent Fault Location in Distribution System Using Phasor Measurement Unit...
Permanent Fault Location in Distribution System Using Phasor Measurement Unit...Permanent Fault Location in Distribution System Using Phasor Measurement Unit...
Permanent Fault Location in Distribution System Using Phasor Measurement Unit...
 
Performance Evaluation and Comparison of Two Cascaded Configurations of PV Ge...
Performance Evaluation and Comparison of Two Cascaded Configurations of PV Ge...Performance Evaluation and Comparison of Two Cascaded Configurations of PV Ge...
Performance Evaluation and Comparison of Two Cascaded Configurations of PV Ge...
 
Honor Seminar ECE 494 Final Report
Honor Seminar ECE 494 Final ReportHonor Seminar ECE 494 Final Report
Honor Seminar ECE 494 Final Report
 
Mems paper
Mems paperMems paper
Mems paper
 
Analysis and Modeling of Transformerless Photovoltaic Inverter Systems
Analysis and Modeling of Transformerless Photovoltaic Inverter SystemsAnalysis and Modeling of Transformerless Photovoltaic Inverter Systems
Analysis and Modeling of Transformerless Photovoltaic Inverter Systems
 
Reduction of Total Harmonic Distortion in Cascaded H-Bridge Inverter by Patte...
Reduction of Total Harmonic Distortion in Cascaded H-Bridge Inverter by Patte...Reduction of Total Harmonic Distortion in Cascaded H-Bridge Inverter by Patte...
Reduction of Total Harmonic Distortion in Cascaded H-Bridge Inverter by Patte...
 
A0411030109
A0411030109A0411030109
A0411030109
 
Transformador excercises para compartir
Transformador excercises para compartirTransformador excercises para compartir
Transformador excercises para compartir
 
IJETT-V12P293
IJETT-V12P293IJETT-V12P293
IJETT-V12P293
 

Final_Report_NathanWendt_11401887

  • 1. Capacitor Modeling Using FEMM By Nathan Wendt May 1, 2015
  • 2. - 1 - Abstract The purpose of this study was to analyze the electric field effects of various capacitor designs. These included a spherical capacitor, a cylindrical capacitor, and a GIS dead-end (a cylindrical capacitor with a hemispherical end). We analyzed both the electric potential and the electric field produced within the capacitors and compared results from a FE computer simulation to the theoretical values based on ideal cases.
  • 3. - 2 - Contents Introduction ..................................................................................................................................................3 Results...........................................................................................................................................................4 Spherical Capacitor .......................................................................................................................................5 Cylindrical Capacitor .....................................................................................................................................7 GIS Dead-End Capacitor................................................................................................................................9 Name Plate Rating from Dead-end Dielectric Strength..............................................................................11 Conclusion...................................................................................................................................................13 Reference....................................................................................................................................................14 Appendix A (Additions for Spherical)..........................................................................................................15 Appendix B (Additions for Cylindrical)........................................................................................................16 Appendix C (Additions for GIS)....................................................................................................................17
  • 4. - 3 - Introduction This report includes analyses from three different capacitors including a description of the capacitors behavior, figures of the electric potential field within each capacitor, and a MATLAB plot comparing the data generated from FEMM 4.2 to the theoretical expectations. Theory would expect that the V field within a long, cylindrical capacitor or a spherical capacitor to linearly decrease radially outward. Our finite element data shows slight deviations from these expected results, most notably half way between the positive and negative voltage terminals of the capacitors. The theoretical equations used in this report are as follows: For spherical capacitors: (1) 𝑉(𝑟) = 𝑉0( 1 𝑟 − 1 𝑏 ) ( 1 𝑎 − 1 𝑏 ) (2) 𝐸 = 𝑉0 𝑏−𝑎 ( 𝑎𝑏 𝑟2) ȃr For cylindrical capacitors: (3) 𝑉𝑟 = 𝑉0 ln( 𝑏 𝑎⁄ ) ln( 𝑏 𝑟⁄ ) (4) 𝐸 = 𝑉0 ln( 𝑏 𝑎⁄ ) ∗ 1 𝑟⁄ ȃr
  • 5. - 4 - Results The following sections reviews the results of this study.
  • 6. - 5 - Spherical Capacitor The simulated spherical capacitor behaved nearly identical to the theoretical model. In this experiment, the inner spherical conductor contains a constant voltage (5000 v) while the outer spherical conductor is grounded. Theory would expect the V-field between the capacitors to be inversely proportionate to the radius as described by equation (1). Figure 1. FEMM model of axisymmetric spherical capacitor. V-field is shown in color with equipotential lines. The red line is the path along which data was compared.
  • 7. - 6 - The theoretical and analytical data were almost perfectly in sync: Figure 2. Theoretical vs FEMM results of spherical capacitor. The two values overlapped nearly perfectly showing that the FEMM software accurately depicts the V-field.
  • 8. - 7 - Cylindrical Capacitor The second phase examined a cylindrical capacitor. The analyses occurred at the center of the capacitor, far from the fringe effects occurring at the edges. Again, the inner cylinder represents a constant voltage (5000 v) while the outer sheath is grounded. Figure 3. FEMM model of axisymmetric cylindrical capacitor. V-field is shown in color with equipotential lines. Data was taken along a radial path at the center of the capacitor.
  • 9. - 8 - Again, the theoretical and analytical data were very close: Figure 4. Theoretical vs FEMM results for cylindrical capacitor. The comparison of the two solutions shows minor differences between the theoretical and analytical values for V-field. This likely could be due to the theoretical assumption of an infinitely long cylindrical capacitor whereas the simulated capacitor was finite in length.
  • 10. - 9 - GIS Dead-End Capacitor The GIS dead-end capacitor behaved very similar to the spherical and cylindrical capacitors (as can be expected). In this study, the V-field was analyzed along two different paths. Along the z-axis from the tip of the hemispherical end and radially outward near the center of the cylinder. The theoretical equation for a spherical capacitor was used for the first path while the theoretical equation for a cylindrical capacitor was used for the second. Figure 5. FEMM model of axisymmetric GIS dead-end. V-field is shown in color with equipotential lines.
  • 11. - 10 - The theoretical and analytical models matched up near perfectly for both the spherical and cylindrical approximations: Figure 6. Theoretical vs analytical V-field values. Both the spherical and cylindrical approximations nearly matched the FEMM simulation. The comparison for the GIS dead-end was near perfect. This shows that the spherical and cylindrical approximations can accurately deduce the V-field even when the shape of the conductor is dissimilar to the ideal representation.
  • 12. - 11 - Name Plate Rating from Dead-end Dielectric Strength In the final section of the results, the GIS dead-end E-field is evaluated to find the maximum safe operating voltage for the dielectric. Our dielectric is capable of operating in electric fields up to E* = 7.35x106 V/m. Due to the proportionality of E to voltage, the ratios of E/v are equal. This yields: (5) 𝑉∗ = ( 𝐸∗ 𝐸 𝑀𝐴𝑋 )𝑉1 Figure 7. Table of values, equations, and descriptions for elements used in determining the maximum safe operating voltage and the rated center-pin-to-sheath voltage.
  • 13. - 12 - The max E-field was found at the tip of the hemisphere in the GIS using the FEMM software. This yielded: EMAX = 1.9389x105 V/m Using equation (5) with the values of EMAX, E*, and V1 = 5000 V, we can calculate V*. V* = 189.540 kV Using a safety factor of 25% we can calculate the maximum operational voltage, VOPERATE as: VOPERATE = 142.156 kV and: VRATED,RMS = 100.519 kV
  • 14. - 13 - Conclusion In conclusion, the similar results between the analytical FEMM software and the theoretical equations served to validate each other and prove that both were acceptable methods for determining the V-field strength inside of various axisymmetric capacitors. The GIS dead-end took it a step further and showed that even with large dissimilarities to the ideal shape the theoretical approximations yield accurate results. The analysis of the maximum E- field allowed us to determine the exact value for breakdown voltage, at which point the dielectric fails. Finally, with a safety factor of 25%, the Voperate came out to be 142.2 kV.
  • 15. - 14 - Reference P. Pedrow. EE331. Class Lecture, Topic: "Dielectrics and Capacitors." SH 7, Doctorate of Engineering, Washington State University, Pullman, Washington, Apr. 22, 2015.
  • 16. - 15 - Appendix A (Additions for Spherical) Below is the MATLAB code used to plot the theoretical vs analytical V-field to radius: function V = sphere_potential(r) if r > 0.05 && r < 0.1 V = 5000*((1/r)-10)/10; else V = 0; end r = 0 : 0.00333 : 0.5; V = zeros(length(r)); for jr = 1 : length(r) V(jr) = shpere_potential(r(jr)); end fileID = fopen('voltage_data1.txt','r'); spec = '%f %f'; sizeV_femm = [2 Inf]; V_femm = fscanf(fileID,spec,sizeV_femm)'; plot(r,V,'g',V_femm(1:150,1),V_femm(1:150,2),'--r') title('Potential (V) vs Radius(r)') legend('Theoretical','FEMM Simulation') xlabel('r') ylabel('V')
  • 17. - 16 - Appendix B (Additions for Cylindrical) MATLAB code: function V = cylinder_potential(r) if r > 0.05 && r < 0.1 V = 5000*log(0.1/r)/log(2); else V = 0; end r = 0 : 0.00333 : 0.5; V = zeros(length(r)); for jr = 1 : length(r) V(jr) = cylinder_potential(r(jr)); end fileID = fopen('voltage_data2.txt','r'); spec = '%f %f'; sizeV_femm = [2 Inf]; V_femm = fscanf(fileID,spec,sizeV_femm)'; plot(r,V,'g',V_femm(1:150,1),V_femm(1:150,2),'--r') title('Potential (V) vs Radius(r)') legend('Theoretical','FEMM Simulation') xlabel('r') ylabel('V')
  • 18. - 17 - Appendix C (Additions for GIS) MATLAB code: function V = cylinder_potential(r) if r > 0.05 && r < 0.1 V = 5000*log(0.1/r)/log(2); else V = 0; End function V = sphere_potential(r) if r > 0.05 && r < 0.1 V = 5000*((1/r)-10)/10; else V = 0; End r = 0 : 0.0001 : 0.15; V_sphere = zeros(length(r)); V_cyl = zeros(length(r)); for jr = 1 : length(r) V_sphere(jr) = sphere_potential(r(jr)); end for ir = 1 : length(r) V_cyl(ir) = cylinder_potential(r(ir)); end file1ID = fopen('voltage_data3_horizontal.txt','r'); file2ID = fopen('voltage_data3.txt','r'); spec = '%f %f'; sizeV_femm_sphere = [2 Inf]; sizeV_femm_cyl = [2 Inf]; V_femm_sphere = fscanf(file2ID,spec,sizeV_femm_sphere)'; V_femm_cyl = fscanf(file1ID,spec,sizeV_femm_cyl)'; plot(r,V_sphere,'c',V_femm_sphere(1:150,1),V_femm_sphere(1:150,2),'-- r',r,V_cyl,'g',V_femm_cyl(1:150,1),V_femm_cyl(1:150,2),'b--') title('Potential (V) vs Radius(r)') legend('Theoretical Sphere','FEMM Simulation Sphere', 'Theoretical Cylincer', 'FEMM Cylinder') xlabel('r') ylabel('V')