Instructional Video7:07
Bozeman Science

Thinking in Systems - Level 5 - Simulating Systems

12th - Higher Ed
In this video Paul Andersen shows conceptual thinking in a mini-lesson on simulating systems. TERMS: Simulations - imitation of a situation or process Interactions - reciprocal (two-way) action or influence Energy - the ability to cause...
Instructional Video31:47
SciShow

Black Holes: The Hungriest Things in the Universe | Compilation

12th - Higher Ed
If you thought a hot dog eating contest was impressive to complete, imagine if a black hole entered it! They eat up everything around them, including stars! But they’re not just gluttonous blobs of the universe. Like all things in space,...
Instructional Video3:49
SciShow Kids

How Do Hot Air Balloons Work?

K - 5th
Hot Air Balloons! They're those big, beautiful balloons people can float up to the sky in-- but how do they get up there?!
Instructional Video7:16
Curated Video

Heat Absorption

6th - 12th
We use two cans, one painted black and the other painted white, to investigate heat absorption. The containers are placed in front of a heat source and the temperature change is recorded. This shows that the black container absorbs heat...
Instructional Video6:51
The Guardian

Documenting Social Housing Injustices Through Film

Pre-K - Higher Ed
For over half a century, residents have reported serious structural issues and terrible conditions in London's social housing complexes. Kwajo Tweneboa is a social housing advocate using social media to push for improved living...
Instructional Video1:14
Curated Video

HVAC On Off Control Basics

Higher Ed
Learn how on, off control works for hvac systems and why they are used for basic controls of heating and cooling systems.
Instructional Video2:37
Curated Video

Circulating pump: What is it & why is it important?

Higher Ed
In this video, we're going to talk about the circulating pump, why it's important and what circulating pumps are used for.
Instructional Video3:26
Curated Video

Heating Systems

3rd - 8th
β€œHeating Systems” explores four major heating systems used today and explains how each functions.
Instructional Video15:20
APMonitor

Data Science 🐍 Classification

10th - Higher Ed
Classification predicts discrete labels (outcomes) such as yes/no, True/False, or any number of discrete levels such as a letter from text recognition, or a word from speech recognition. There are two main methods for training...
Instructional Video29:52
APMonitor

LSTM Replaces PID Control

10th - Higher Ed
The purpose of this exercise is to automate a temperature control process with an LSTM network. The LSTM network is trained from a PID (Proportional Integral Derivative) controller or a Model Predictive Controller (MPC). LSTM (Long Short...
Instructional Video26:16
APMonitor

Python 🐍 If Statements

10th - Higher Ed
Statements if and else tell the computer what to do based on a condition that is True or False. The elif statement is an additional if statement when there is more than one switching condition.
Instructional Video13:03
APMonitor

Python 🐍 Introduction

10th - Higher Ed
Welcome to this introductory course on Python! This course is intended to help you start programming in Python from little or no prior experience. There are video tutorials for each exercise if you have questions along the way. One of...
Instructional Video19:48
APMonitor

Python 🐍 Variables

10th - Higher Ed
Variables store information and are objects in Python. For example, if you wanted to keep a set temperature for an egg, you would type egg = 37.5 for Β°C or egg = 99.5 for Β°F. The first part tells what the variable will be called, and the...
Instructional Video16:42
APMonitor

Python 🐍 Incubator Project

10th - Higher Ed
One of the best ways to start or review a programming language is to work on a simple project. These exercises are designed to teach basic Python programming skills to help you design a temperature controller. Temperature control is...
Instructional Video5:02
All In One Social Media

My Home In Korea - Moving To Korea - Desiree Martinez

Higher Ed
My Home In Korea - Moving To Korea // We moved to Korea! Check out our super big house and its funny quarks and enjoy some drone aerial footage or our "backyard".
Instructional Video44:22
APMonitor

Matlab πŸ‘©β€πŸ’» Course Final Project

10th - Higher Ed
The final project is to put together all of the basic parts of the course to help you complete a project to design the temperature control for an egg incubator. This is an opportunity for you to review the course material as you use many...
Instructional Video20:12
APMonitor

Java β˜• Final Course Project

10th - Higher Ed
This final project is an opportunity for you to use the skills you've learned in this course to build a temperature control program that works like an egg incubator. Feel free to look back through the previous lessons as you remember and...
Instructional Video20:10
APMonitor

Python 🐍 Print

10th - Higher Ed
Printing is displaying values to the screen. The word print comes from the time when programs previously put ink on paper. You use the built in python function print() to output values. You could use this to tell you what is the current...
Instructional Video20:44
APMonitor

Python 🐍 Lists and Tuples

10th - Higher Ed
Lists are a way of storing a sequence of values and possibly different types of information in just one variable. They are created with square brackets [ ]. Tuples are similar to a list but the sequence of values is immutable (can't be...
Instructional Video21:07
APMonitor

Matlab πŸ‘©β€πŸ’» If Else Statements

10th - Higher Ed
If and else statements tell the computer what to do based on a true or false condition. Condition operators can combine multiple conditions to correctly direct the program to different sections of code.
Instructional Video16:06
3D Print General

Repairing a Gunked Up Hotend

Higher Ed
Well this took a lot longer to fix than I was hoping for. In this video I attempt to repair the annoying overly gunked up hotend. If your gunked up hotend is not as bad as mine, you may just be able to heat it up to extrusion...
Instructional Video7:31
Curated Video

Thermal Properties of Water: Specific Heat Capacity Experiment

9th - Higher Ed
This video is a lecture presentation on the thermal properties of water. The presenter discusses the specific heat capacity of water and how to calculate it using an equation. A student then demonstrates an experiment to determine the...
Instructional Video11:51
APMonitor

Load Arduino Leonardo Firmware for TCLab

10th - Higher Ed
Firmware is compiled code that runs a microcontroller such as an Arduino Leonardo. The Temperature Control Lab (TCLab) has an Arduino base and the program is modified for serial connection for Python, MATLAB, Java, or other programming...
Instructional Video26:15
APMonitor

Python 🐍 Loops

10th - Higher Ed
There are two basic types of loops including for and while. A for loop is to repeat code a predetermined number of times. A while loop is to repeat code but where the stopping condition may not be known before the loop starts.