Tuesday, 24 April 2018

Published April 24, 2018 by with 0 comment

Matlab for Digital Signal Processing and Processors [Part 1]

Complete Code clear all n = [0 : 1 : 10]; x1 = [ones,zeros(1,10)]; subplot(2,4,1) stem(n,x1,'fill') title('Impulse') xlabel('n') ylabel('Amplitude') x2 = ones(1,11); subplot(2,4,2) stem(n,x2,'fill') title('Step') xlabel('n') ylabel('Amplitude') x3 = n; subplot(2,4,3) stem(n,x3,'fill') title('Ramp') xlabel('n') ylabel('Amplitude') x4...
Read More
      edit

Monday, 19 March 2018

Published March 19, 2018 by with 0 comment

[Mini Project] Controlling the temperature of a closed environment (Log 2)

In the previous post I had posted that based on requirement by user that is for either heating or cooling we can switch on/off the heating and cooling element, but this approach seems naive for purpose of achieving a range of temperatures. So we decided on using a peltier element for heating as well...
Read More
      edit
Published March 19, 2018 by with 1 comment

My Journey to Girnar - A Pilgrimage Site for The Jains

Girnar is a pilgrimage spots for people following Jainism. Located in the Junagadh district of Gujrat, it is known for its religious significance. Not only Jains but the people who worship Lord Shiva and Lord Dattatreya are also fascinated by the pristine atmosphere of Girnar. According to...
Read More
      edit

Sunday, 4 February 2018

Published February 04, 2018 by with 0 comment

[Mini Project] Controlling the temperature of a closed environment (Log 1)

The Objective : The basic aim of this project is to be able to maintain a constant temperature inside a closed container, the temperature required to be maintained is specified by the user. The user should be able to set any temperature between those limits , and the project setup will try to maintain...
Read More
      edit

Thursday, 4 January 2018

Published January 04, 2018 by with 0 comment

DSBSC Modulation and Demodulation simulation in Simulink

DSBSC Modulator and Demodulator Block Diagram executed in Simulink Modulation Message Signal : 2V(p-p) 200 Hz  Carrier Signal: 2V(p-p) 1500 Hz The DSBSC modulation is one type of modulation in which the message is carried on the amplitude of a sinusoidal signal. Mathematically...
Read More
      edit

Wednesday, 3 January 2018

Published January 03, 2018 by with 0 comment

PIR Sensor Heat Detector

PIR based heat detection  1. Objective The objective of this project is to sense heat with the help of infrared radiations emitted by a warm body. Thus it aims at contactless detection of heat 2. Approach A. Testing the PIR Transducer The PIR sensor [1] was tested for the nature of output...
Read More
      edit