×

Linear, Log and exponent plots – Sratch

I was always confused with log. Sometimes its difficult for me  to handle log based problems . So, I decided to do project in log in scratch to visualize the curve and also to get a clear picture of that.  I started...

Read out all

Fraction activity with grade 5 and 6 – Isai Ambalam

The children were given a scenario where they had to equally cut pencils and place it in their geometry boxes. They did not physically cut pencils but used papers instead. The question given was : Cut 5 pencils and place them in...

Read out all

Change multiple file extensions using Command Prompt

You can change multiple file extensions using command line. I had 20 odd xlsx files which I want to change as csv files. You can use this command:  ren *.xlsx *.csv Step 1: Change to directory you want to change the file extensions....

Read out all

Children Presentation – Udavi – STEMland

Sanjeev came up with the idea of letting the 9th grade children present what they learned so far over a month to the rest of the class. As in some days we have combined classes with the 7th and 8th graders, they...

Read out all

Mandala’s

This scratch project was created by Barani (7th std student) from Udavi School, Auroville. Barani had started this project to get a feel of scratch. This was one project which was not about animated characters playing a role in a story. Next...

Read out all

STEM Land Brochure

 Three fold brochure/flyer/handout of STEM Land Front Back Updated Brochure Front Back

Read out all

STEM land Annual Report 2015 – 2016

STEM LAND The vision behind the STEM is learning based on concepts, practical observation & abstraction with the help of teaching kits & technology. In short “Mediocrity to Excellence. It empowers students to use their creativity to solve problems, ask questions and...

Read out all

Matplotlib Animation – calling animation from a function

Creating Animation in Matplotlib: #—————————————————————————— # ANIMATION- DYNAMIC PLOTS #—————————————————————————— import matplotlib.pyplot as plt import matplotlib.animation as animation from matplotlib.figure import Figure import time def animated_plot(): def data_gen(t=0): “”” Generator – generating data to plot the graph “”” cnt = 0 while...

Read out all

Passing ‘Global Variable’ across the files in Python

Passing global variable – Attachment I have encounter a situation where i need to pass a variable from one file to another file. This is like passing global variable across the files. I’ve created three files to demonstrate this as follows, main.py  ...

Read out all