2019-06-19 16:24:44 -07:00
|
|
|
from active_projects.diffyq.part2.staging import *
|
|
|
|
from active_projects.diffyq.part2.fourier_series import *
|
|
|
|
from active_projects.diffyq.part2.heat_equation import *
|
|
|
|
from active_projects.diffyq.part2.pi_scenes import *
|
|
|
|
from active_projects.diffyq.part2.wordy_scenes import *
|
2019-06-19 16:10:21 -07:00
|
|
|
|
2019-06-20 13:26:43 -07:00
|
|
|
OUTPUT_DIRECTORY = "diffyq/part2"
|
2019-06-19 16:10:21 -07:00
|
|
|
SCENES_IN_ORDER = [
|
|
|
|
PartTwoOfTour,
|
|
|
|
HeatEquationIntroTitle,
|
|
|
|
BrownianMotion,
|
|
|
|
BlackScholes,
|
|
|
|
ContrastChapters1And2,
|
|
|
|
FourierSeriesIntro,
|
|
|
|
FourierSeriesIntroBackground20,
|
|
|
|
ExplainCircleAnimations,
|
|
|
|
# FourierSeriesIntroBackground4,
|
|
|
|
# FourierSeriesIntroBackground8,
|
|
|
|
# FourierSeriesIntroBackground12,
|
|
|
|
TwoDBodyWithManyTemperatures,
|
|
|
|
TwoDBodyWithManyTemperaturesGraph,
|
|
|
|
TwoDBodyWithManyTemperaturesContour,
|
|
|
|
BringTwoRodsTogether,
|
|
|
|
ShowEvolvingTempGraphWithArrows,
|
|
|
|
# TodaysTargetWrapper,
|
|
|
|
WriteHeatEquation,
|
|
|
|
ReactionsToInitialHeatEquation,
|
|
|
|
TalkThrough1DHeatGraph,
|
|
|
|
ShowCubeFormation,
|
|
|
|
CompareInputsOfGeneralCaseTo1D,
|
|
|
|
ContrastXChangesToTChanges,
|
|
|
|
ShowPartialDerivativeSymbols,
|
|
|
|
WriteHeatEquation,
|
|
|
|
ShowCurvatureToRateOfChangeIntuition,
|
|
|
|
ContrastPDEToODE,
|
|
|
|
TransitionToTempVsTime,
|
|
|
|
Show1DAnd3DEquations,
|
|
|
|
#
|
|
|
|
AskAboutWhereEquationComesFrom,
|
|
|
|
DiscreteSetup,
|
|
|
|
]
|