Department of Aerospace Engineering

and light years to go before i sleep

We never measure distance in km or miles maybe Robert frost would. (1 light year = 9.4605284 × 10^15 meters)

PhD Missile guidance navigation and control - Study of destructive forces was once called black magic but now it is called by the name Missile GNC

ME Aerospace Technology - Satellite Technology =The study of artificial satellites, the on board payloads and space mechanics.

Starting from very fundamental laws of motion till Tsiolkovsky's Equation and all the fundamental forces yet to be discovered

Consider n linear equations with n unknowns

Feel the divine creation as the unknown parameter n1 becomes a known parameter in time t and we are in search of the next unknown variable n2 ,the variable GOD becomes the unknown parameter n3 and whenever we find the unknowns the next unknown will be assigned GOD.

we can never find him but his absence leaves us with no solution

Time is the only variable which not only human beings but also Differential equations suffer

WELCOME to World of Satellites >>The only non living things in search of mysteries of the Universe

5th law of thermodynamics states that the "Total entropy of life is constant,ie you change from an ordered state (happy) to disordered state (sadness) and viceversa"

Interest varies as a sine function of time.When the sine wave increase gradually we are happy then starts decreasing we are sad >>>life is a cycle.if it s a bridge rectifier or full wave rectifier we will get continuous half wave cycles i.e continuous happiness so life s a rectifier it converts AC to DC (happy to sad....)0r DC to AC (sad to happy....)
there is no sadness withot a happy time
life has two paths, the one you wish to go and another u dont wish to go...u wish not to go on the path u do not wish to go and life takes u in the path u wished u do not wish to go>>>life is fu*king complicated..cant say in a single buzz
Everyone is ODD enough to be a human being



Quotes by me

Monday, February 21, 2011

PWM SIGNAL GENERATION using TMS320C6711 Floating Point Digital Signal Processor






The DSP Starter kit consists of TMS320C6711 Floating Point Digital Signal Processor and a 16 bit dual-channel voice/data codec TLC320AD535 for input/output support. This codec uses Sigma-Delta Technology for Analog to Digital/Digital to Analog conversion. This codec has a fixed sampling rate of 8 KHz. The DSP uses Very Long Instruction Word (VLIW) Architecture. There are many ways of generating PWM signals. The ADC converts an input signal into discrete output digital words in 2’scomplement format that correspond to the analog signal value
Polling Method
The Multichannel Buffered Serial Port (McBSP) can be interrupt driven or can be driven by polling method. A polling-based program (non-interrupt driven) continuously polls or tests whether or not data are ready to be received or transmitted. This scheme is less efficient than the interrupt scheme. Within the output write function mcbsp0_write, SPCR is ANDed with 0x20000 to test bit 17 .
temp = *(unsigned volatile int *)McBSP0_SPCR & 0x20000;
An output data value is sent through the data transmit register of McBSP. The polling technique uses a continuous procedure of testing when the data are ready.
The following lines of code are used to generate a PWM wave
comm_poll();
while(1)
{
y=-ampoframp*ramp1000[i];
i = (i + freqoframp) % 2000; //next sample is + freq in table
x=ampofsine*sine8000[j];
j = (j + freqofsine) % 8000; //next sample is + freq in table
if (y < x)
pwm=-10000;
else pwm=10000;
output_sample(pwm);
}

No comments:

Post a Comment

NeoCounter