summaryrefslogtreecommitdiff
path: root/3830/CH7/EX7.19/Ex7_19.sce
blob: 7b66078f890467ea592a96344273e73513c49472 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Exa 17.19

clc;
clear;

// Given

// A Capacitive Transducer
d = 2.5; // plate separation in mm
A = 600; // Area (in mm^2)
P = 8*10^5; // Pressure applied in N/m^2
x = 0.5; // deflection produced in mm
C = 400*10^-12; // Capacitence in farad

// Solution

// Since, C = e*A/d
 e =C*d/A;

printf('Since we have to find capacitence when no pressure is applied. At that time plate separation = %d mm \n', d-x);

d1 = d-x; // plate separation(mm) after pressure applied 
C1 = e*A/d1;

printf(' The value of capacitence, C with d = 2mm  = %d micro farad \n', C1*10^12);