2019-04-02 17:43:58 -07:00
|
|
|
from active_projects.ode.part2.staging import *
|
|
|
|
from active_projects.ode.part2.fourier_series import *
|
2019-04-03 20:40:22 -07:00
|
|
|
from active_projects.ode.part2.heat_equation import *
|
2019-04-09 18:52:59 -07:00
|
|
|
from active_projects.ode.part2.pi_scenes import *
|
2019-04-11 09:56:19 -07:00
|
|
|
from active_projects.ode.part2.wordy_scenes import *
|
2019-04-02 17:43:58 -07:00
|
|
|
|
|
|
|
OUTPUT_DIRECTORY = "ode/part2"
|
2019-04-21 08:15:11 -07:00
|
|
|
SCENES_IN_ORDER = [
|
2019-04-04 14:30:52 -07:00
|
|
|
PartTwoOfTour,
|
2019-04-21 08:15:11 -07:00
|
|
|
HeatEquationIntroTitle,
|
|
|
|
BrownianMotion,
|
|
|
|
BlackScholes,
|
|
|
|
ContrastChapters1And2,
|
|
|
|
FourierSeriesIntro,
|
|
|
|
FourierSeriesIntroBackground20,
|
|
|
|
ExplainCircleAnimations,
|
|
|
|
# FourierSeriesIntroBackground4,
|
|
|
|
# FourierSeriesIntroBackground8,
|
|
|
|
# FourierSeriesIntroBackground12,
|
2019-04-06 11:52:56 -07:00
|
|
|
TwoDBodyWithManyTemperatures,
|
|
|
|
TwoDBodyWithManyTemperaturesGraph,
|
|
|
|
TwoDBodyWithManyTemperaturesContour,
|
2019-04-06 14:01:37 -07:00
|
|
|
BringTwoRodsTogether,
|
2019-04-09 18:52:59 -07:00
|
|
|
ShowEvolvingTempGraphWithArrows,
|
2019-04-21 08:15:11 -07:00
|
|
|
# TodaysTargetWrapper,
|
2019-04-09 18:52:59 -07:00
|
|
|
WriteHeatEquation,
|
|
|
|
ReactionsToInitialHeatEquation,
|
|
|
|
TalkThrough1DHeatGraph,
|
2019-04-11 09:56:19 -07:00
|
|
|
ShowCubeFormation,
|
|
|
|
CompareInputsOfGeneralCaseTo1D,
|
2019-04-16 12:52:06 -07:00
|
|
|
ContrastXChangesToTChanges,
|
2019-04-16 14:03:37 -07:00
|
|
|
ShowPartialDerivativeSymbols,
|
2019-04-21 08:15:11 -07:00
|
|
|
WriteHeatEquation,
|
|
|
|
ShowCurvatureToRateOfChangeIntuition,
|
|
|
|
ContrastPDEToODE,
|
2019-04-11 09:56:19 -07:00
|
|
|
TransitionToTempVsTime,
|
2019-04-21 08:15:11 -07:00
|
|
|
Show1DAnd3DEquations,
|
|
|
|
#
|
|
|
|
AskAboutWhereEquationComesFrom,
|
|
|
|
DiscreteSetup,
|
2019-04-02 17:43:58 -07:00
|
|
|
]
|