Bozeman Science
Thinking in Systems - Level 5 - Simulating Systems
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...
SciShow
Black Holes: The Hungriest Things in the Universe | Compilation
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,...
SciShow Kids
How Do Hot Air Balloons Work?
Hot Air Balloons! They're those big, beautiful balloons people can float up to the sky in-- but how do they get up there?!
Curated Video
Heat Absorption
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...
The Guardian
Documenting Social Housing Injustices Through Film
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...
Curated Video
HVAC On Off Control Basics
Learn how on, off control works for hvac systems and why they are used for basic controls of heating and cooling systems.
Curated Video
Circulating pump: What is it & why is it important?
In this video, we're going to talk about the circulating pump, why it's important and what circulating pumps are used for.
Curated Video
Heating Systems
βHeating Systemsβ explores four major heating systems used today and explains how each functions.
APMonitor
Data Science π Classification
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...
APMonitor
LSTM Replaces PID Control
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...
APMonitor
Python π If Statements
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.
APMonitor
Python π Introduction
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...
APMonitor
Python π Variables
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...
APMonitor
Python π Incubator Project
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...
All In One Social Media
My Home In Korea - Moving To Korea - Desiree Martinez
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".
APMonitor
Matlab π©βπ» Course Final Project
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...
APMonitor
Java β Final Course Project
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...
APMonitor
Python π Print
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...
APMonitor
Python π Lists and Tuples
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...
APMonitor
Matlab π©βπ» If Else Statements
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.
3D Print General
Repairing a Gunked Up Hotend
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...
Curated Video
Thermal Properties of Water: Specific Heat Capacity Experiment
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...
APMonitor
Load Arduino Leonardo Firmware for TCLab
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...
APMonitor
Python π Loops
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.