SpeeDe V_03

SpeeDe V_03:
The aim of the third version of the SpeeDe is to improve the sensitivity to capture the speed of even smaller object. In this regard, I have done some modification in the program ( using the concept of interrupts in Arduino).

ARDUINO PROGRAM:                                                                                                                       // include the library code:
#include <LiquidCrystal.h>
// constants won’t change. They’re used here to
// set pin numbers:
// variables will change:
volatile int State = 0;         // variable for reading the pushbutton status
// Start and stop times
volatile unsigned long start_time_us = 0;
volatile unsigned long stop_time_us = 0;
float delta_time;
float speed_var;

See More

Reference:                                                                                                                             http://www.auraauro.com/uncategorized/speede-v-01-2/
http://arduino.cc/en/Reference/attachInterrupt

 

Sampling Theorem

SAMPLING:   A continuous time signal can be represented in its samples and can be recovered back when sampling frequency fs is greater than or equal to the twice the highest frequency (fm) component of message signal. i. e  fs 2fm.

Consider a continuous time signal x(t). The spectrum of x(t) is a band limited to fm Hz. Sampling of input signal x(t) can be obtained by multiplying x(t) with an impulse train δ(t) of period Ts. The output of multiplier is a discrete signal called sampled signal which is represented with y(t) in the following diagrams:

Samplling

ALIASING:

Different signals to become indistinguishable (or aliases of one another) when sampled is called Aliasing. Aliasing occurs when a system is measured at an insufficient sampling rate.

aliasing

 Reference:

http://www.tutorialspoint.com/signals_and_systems/signals_sampling_theorem.htm

Demonstration of Division

Many  teachers struggle with teaching division to children and I have been thinking about this recently. I think there are a number of factors contributing to this. Firstly,  there is a huge range of level of understanding of the concept of division and secondly the concept itself can be thought of as building on children’s understandings of addition, subtraction and multiplication. The spread of different levels of understanding is likely to make any class “mixed ability” for this topic. There are also difficulties with the written algorithm. Altogether, it is a complicated picture. So I Started to create the division program in Scratch to give demonstration.

Division2

See more : https://scratch.mit.edu/projects/56911106/

 

 

At Isai Ambalam

For the first few weeks I decided to teach and learn with the 5th graders at Isai Ambalam middle school, at class we worked out many logic puzzles. The class was at the stage of working out multiplication and division. Speed,distance,time and interrelating each other to form stories of multiplication and division were introduced…

e.g.: if a car travels at a speed of 25 km/hr, what will be the distance covered by the car in 4 hours?

indexScreenshot from 2015-04-11 15:12:12

The students multiplied and came up with a solution, by saying that the car would cover a distance of 100kms. The same story was made into division

e.g.: if a car covers 100km in 4hours, what is the speed of the car? The speed of the car is 25km/hr

Screenshot from 2015-04-11 15:04:11the students were able to make out the stories, as we got into creating many different stories I started to realize that not all students did understand what they were making up, some got confused or did not understand the units..

I asked the students how far was their home from school, well there were many loud answers, but each answer terminated with a unit of distance( the lesson learn ‘t was to never ask a general questions to the whole class, or else expect a chorus answer if you don’t want that to happen, be more specific and select a random child to question) . They all knew that time was in hours, but the units of speed and distance always seemed to confuse them until they came to realize that speed is the amount of distance covered over a certain period of time….

the real reason was that the majority of the students did not understand English very well, being bilingual is very very important. But once the conversation starts in Tamil( mother tongue) its easy to forget the conscious of switching back to English…

by the time these few weeks passed the relation with the class grew stronger, I came to realize that there were some four students who seriously did not know what they were doing in mathematics class… every class has a few slow learners, but having students who could not multiply, or even added by using their fingers seemed a little bit odd. I decided to take into consideration these four members of the classroom.

The five of us would sit together and start to solve some multiplication problems, after a while they seemed to get a handle of the multiplication… but the problem showed up in the addition part after multiplying two, two digit numbers… simple additions required finger counting, they could not do mental calculations. If asked what is five plus six they would take five fingers and then start to count six fingers, to see that number 1 was left after adding five plus five and the answer was 11 was not that obvious.

DSC_0523To create a change the abacus was introduced and still it was a little hard to see the fives, as the whole ten beads were the same colour. Now the abacus was taken apart and every five beads were altered so as to see the simple pattern of fives. After this, the pattern was seen that when one adds five to seven the remaining number of beads is two and the answer is twelve. To have broken the pattern of finger calculation which they were stuck with for all these years felt awesomely superb. But after a few days with the abacus rigorous training was difficult and the student seemed to be getting a littler tired of beads counting….

that is when introducing scratch programming seemed to ignite a little spark, as a team we came together and built a small script that added two digit numbers. The children were so excited and eager to solve the sums in scratch than before with the abacus. Now doing mental calculations seemed to easier than before.

https://scratch.mit.edu/projects/56560028/

DSC_0516 DSC_0517

 

 

Scratch stories with Udavi 8th graders

Scratch stories with Udavi 8th graders

The 8th graders at Udavi had made stories on the theme ‘ if i had wings ‘ , they were wanting to depict their stories with scratch. The time offered was four English class hours on that week, and so the fun began… on the first day all the students had worked through an idea of what they wanted to depict with scratch programming, and when asked to pair up as a team and do their work, the usual boy-boy and girl -girl teams appeared. To make things more collaborative and interesting we mixed up the pairs into boy – girl.., asked on what aspects , criteria they were willing to do evaluate the work. They came up with the following

-UnderstandableDSC_0511

-Colourful

-Creative

-Beautiful

-Using Proper Language

-Interesting

-Teamwork

The class was just so amazing, all the children were totally focused on their work as a team there were no cross talks between teams.

DSC_0512The students used the Internet to get their characters and backgrounds. Gimp was introduced to them as and editing tool.

 

 

DSC_0513On the 2nd and 3rd day the children continued working with their script. They were also engaged in giving feedback with the mentioned aspects. Towards the end of the last assigned day all the projects were decided to be merged as to make a single video. The students amongst themselves coordinated and went along other teams that were still engaged in their scripting, and started to explain the process of merging files.

Incremental Backup for Ubuntu

The command :

tar -cvfz -X excludeList -g 20150407.snar 20150407-full.tar.gz ~

tar-cvfz – creates all the files.

-X excludeList – creates a folder where one can exclude the files that need not be backed up.

-g .snar – this is the command used for incremental backup.

.tar.gz ~ – create .gz files which can be extracted later

  • At first do a full blind backup of all your files.
  • Then for the next backup, create a new .snar file and copy the old .snar to the new one.