| Themes > Science > Physics > Electromagnetism > Electrostatics > Capacitors & Dielectrics > Dielectrics 2: Oil/vacuum capacitor |
|
Method 1: Using dielectrics Let's draw a picture first. Note that the picture has been rotated 90 degrees.
D is independent of the medium. With Gauss' Box G we see that it is equal to the free charge density. > D1:=sigma[free]: The definition of the charge density is as follows. > Q[free]:=sigma[free]*A: Define the relation between E and D for both media. > E1:= D1
/(1*epsilon[0]): The potential V is defined as the integral of E dl . The electrical field is uniform, so we can just multiply. > eq1:= V=E1*d/2 + E2*d/2: Now get an expression for > assign(solve({eq1,Q[free]},{sigma[free],Q[free]})[1]); sigma[free];
Get expressions for E and D. > 'E1' = E1;
Test if the fields are equal when > subs(epsilon[r]=1,E1)=subs(epsilon[r]=1,E2);
Well, the above seems to be correct. Now compute the capacity. > C:=Q[free]/V;
Method 2: Using serial capacitors To compute the capacity of the box, we can make use of the fact that it can be seen as two capacitors in series; one filled with vacuum and the other filled with oil. We use the standard capacitance formula for a capacitor. > C1 :=
epsilon[0]*A/(d/2): Now we just use the formula for capacitors in series and voila, we get the same result as in method 1. > C := simplify(1/(1/C1+1/C2));
Horizontal box: vacuum and oil on top of each other Method 1: using dielectrics. Let's first draw a picture of this situation.
We know that the integral of E dl is equal to the potential. This is correct for the vacuum as well as the oil, so > E1:= V/d: Let maple know the relation between D and E. > D1:=
epsilon[0]*E1;
Check if those are the same when > subs(epsilon[r]=1,D2)=D1;
And this seems to be correct. Charge density is equal to D. > sigma1[free]:= D1;
The charge is the charge density devided by the surface. > Q1[free]:= D1*A/2;
The total free charge is the sum of all free charges. > Q[free]:= simplify(Q1[free]+Q2[free]);
Now calculate the capacity > C:=Q[free]/V;
Method 2: using parallel capacitors The box can in this case be considered as two capacitors in parallel. > C1:=
epsilon[0]*1*A/2/d: > C := simplify(C1+C2);
This seems to correspond with method 1. |
|
|