blob: 2961d90023d6c0986cca7c9b82e042a5c0376eec (
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
|
// Example 1.4
// Computation of magnitude of the developed torque
// Page No. 21
clc;
clear all;
close;
// Given data
Ebat=36; // Battery voltage
R=4; // Combined resistance of the coil
B=0.23; // Flux density
L=0.3; // Length of the coil
d=0.60; // Distance between centre of each conductor and centre
// of each shaft
beta_skew=15 // Skew angle
// Magnitude of the developed torque
alpha=90-beta_skew;
I=Ebat/R;
T=2*B*I*(L*sind(alpha))*d; // Magnitude of the developed torque
//Display result on command window
printf("\n Magnitude of the developed torque = %0.2f N.m ",T);
|