├── LICENSE ├── README.md ├── guide ├── README.md └── doc │ ├── GuideWSL(Chinese).md │ ├── InstallSoftware.md │ ├── Introduction2Markdown(Chinese).md │ ├── Problem_Solution.md │ ├── TheSimpleGit(Chinese).md │ ├── UseSoftware.md │ ├── img │ ├── downloadSEES.jpg │ ├── git-local.jpg │ ├── git-process.jpg │ ├── github.jpg │ ├── jupyter-bat.jpg │ ├── jupyter-demo.png │ ├── jupyter-hello.jpg │ ├── pip-mirror.jpg │ ├── python37-update-pip.jpg │ ├── python38-install-path.jpg │ ├── syntaxerror.jpg │ ├── vscode-ext-python.jpg │ ├── vscode-gcc.jpg │ ├── vscode-git.jpg │ ├── vscode-markdown.jpg │ ├── vscode-open-terminal.jpg │ ├── vscode-python-0.jpg │ ├── vscode-python-1.jpg │ ├── vscode-taskbar.jpg │ ├── vscode-terminal.jpg │ ├── vscode.jpg │ └── wsl │ │ ├── code.jpg │ │ ├── ubuntu-account-1.jpg │ │ ├── ubuntu-account.jpg │ │ ├── ubuntu-install.jpg │ │ ├── ubuntu.jpg │ │ └── wsl.jpg │ └── softwares_debian.md └── notebook ├── Unit1-1-Introduction_Python.ipynb ├── Unit1-2-Control_Flow.ipynb ├── Unit1-3-Function_Module_Package.ipynb ├── Unit1-4-1-Tuple.ipynb ├── Unit1-4-2-List.ipynb ├── Unit1-4-3-Dict.ipynb ├── Unit1-5-Files.ipynb ├── Unit2-1-Matplotlib.ipynb ├── Unit2-2-Understanding_Experimental_Data.ipynb ├── Unit2-3-Lies_and_Statictics.ipynb ├── Unit2-A-LaTex_Math.ipynb ├── Unit3-1-Classes.ipynb ├── Unit3-2-Exception.ipynb ├── Unit4-1-Modeling_Simulation_Engineering_Systems.ipynb ├── Unit4-2-RefrigerationCycle.ipynb ├── Unit4-3-RefrigerationCycle_OOP.ipynb ├── Unit4-4-RefrigerationCycle_JSON.ipynb ├── Unit4-5-RefrigerationCycle_Multistage.ipynb ├── Unit4-A-RefrigerationCycle_Variable.ipynb ├── Unit5-1-GCC_Make.ipynb ├── Unit5-2-GCC_Library.ipynb ├── Unit5-A-ctypes.ipynb ├── Unit5-B-C_stdio.ipynb ├── Unit6-1-Algorithmic_Complexity.ipynb ├── Unit6-2-Search_Algorithms.ipynb ├── Unit6-3-Sorting_Algorithms.ipynb ├── Unit6-4-Hash_Table.ipynb ├── Unit6-A-Data_Structure_C.ipynb ├── Unit7-1-Unittest.ipynb ├── Unit7-2-Git.ipynb ├── Unit7-A-Intro_SoftwareEngineering.ipynb ├── Unit8-1-Linux.ipynb ├── Unit8-2-Thread.ipynb ├── Unit8-A-Programming_On_Linux.ipynb ├── code └── python │ ├── circle.py │ ├── cpu_monitor.py │ ├── demo.py │ ├── echo-client-cpu.py │ ├── echo-server-cpu.py │ ├── echo_client_cpu_class.py │ ├── multiconn-server.py │ ├── plt111.py │ ├── pyqt6-gui-qtime_client.py │ ├── pyqt6-gui-qtimer.py │ ├── pyqt6-gui-responsive.py │ ├── pyqt6-gui-unresponsive.py │ ├── pyqt6-gui.py │ └── thesimplestqt.py ├── coolpropdemo ├── bin │ ├── .gitignore │ ├── CoolProp.dll │ ├── CoolProp.lib │ ├── libCoolProp.dll │ └── libCoolProp.so.6.4.1 ├── demo.cpp ├── include │ └── CoolPropLib.h └── main.c ├── data ├── 219_threePhaseIntelligentMeter_2015.xls ├── StudentIDInfo.csv ├── US_temperatures.csv ├── default.txt ├── global-fossil-fuel-consumption.csv ├── launcherData.csv ├── midWestHousingPrices.csv ├── midWestHousingPrices.txt ├── myfile.txt ├── personrecords.csv ├── personrecords.txt ├── vcr-11-2-strid.csv ├── vcr-11-2.csv └── wwc2019_q-f.csv ├── demo ├── bin │ └── .gitignore ├── include │ ├── intDict.h │ ├── merge_sort.h │ ├── number.h │ └── statistics.h ├── makefile ├── makestatso.mk ├── makestatso1.mk ├── makestatso_nonobj.mk ├── makestatsodemo.mk ├── obj │ └── .gitignore └── src │ ├── MergeSort.c │ ├── demo_linkedlist_queue.c │ ├── demo_linkedlist_stack.c │ ├── demomath.c │ ├── demomath.cpp │ ├── intDict.c │ ├── merge_sort.c │ ├── number.c │ ├── para_merge_sort.cpp │ ├── statdemo.c │ └── statistics.c ├── img ├── 162.PNG ├── 163.PNG ├── 164curve.PNG ├── 165.PNG ├── 21-12.jpg ├── 22-0.jpg ├── 22-10.jpg ├── 22-11.jpg ├── 22-12.jpg ├── 22-9.jpg ├── Figure1.png ├── Figure1.svg ├── Figure11.svg ├── Figure2.png ├── Figure2.svg ├── Python-Slicing.jpg ├── PythonShell-demo.jpg ├── PythonShell.jpg ├── bisection_method.png ├── c11-figure1.jpg ├── compile.png ├── continue-break.jpg ├── demogccfolder.jpg ├── df_concat_sort.jpg ├── df_www.loc[3].jpg ├── ds │ ├── bems.jpg │ ├── bigo-orders.jpg │ ├── bigo.jpg │ ├── hash1.png │ ├── hashtable_separatechaining.gif │ ├── linked-list-queue.png │ ├── linked-list-stack.png │ ├── merge_sort.jpg │ ├── merge_sort_pseudocode.jpg │ ├── queue.png │ ├── queuelife.jpg │ ├── selection_sort_pseudocode.jpg │ ├── selsort.jpg │ ├── selsort_unstable.jpg │ ├── stable_sort.jpg │ ├── stacklife.jpg │ └── unstable-selectionsort.jpg ├── excel-powermeter.jpg ├── excel-powermeter_sample_hour_minute.jpg ├── fig23-1.jpg ├── fig57.jpg ├── fig58.PNG ├── fig61.jpg ├── figure412.jpg ├── git │ ├── Git_FileModified.png │ ├── Git_FileNew.png │ ├── Git_StorageModel.png │ ├── TheProcessGit.jpg │ └── git-code-diff.jpg ├── if-else.jpg ├── interpret.png ├── library.png ├── line_style.jpg ├── linux │ ├── Architecture-of-Linux.png │ ├── Linux-desktop.jpg │ ├── Linux-shell.png │ ├── ThreadDiagram.jpg │ ├── UnixFileLongFormat.png │ ├── con_and_par.jpg │ ├── copy2searchpath.jpg │ ├── echo-server-client.jpg │ ├── event-loop.png │ ├── filepermission.jpg │ ├── gui-background-threading.jpg │ ├── host-port-socket.jpg │ ├── installcoolprop2linux-make.jpg │ ├── installcoolprop2linux.jpg │ ├── linux-dev.jpg │ ├── linux-dir.jpg │ ├── linux-file-permission.jpg │ ├── linux-file-system.jpg │ ├── linux-hello.png │ ├── linux-path-1.jpg │ ├── linux-wd.jpg │ ├── ls.jpg │ ├── parallel_problem.gif │ ├── pypi-os.jpg │ ├── socket-multi-client.png │ ├── socket-single-client.png │ └── socket_server_client.jpg ├── make-cur.jpg ├── makefile-f.jpg ├── moderncpp.png ├── oop │ ├── OOP_Objects.png │ ├── OOP_ThreeCompartment.png │ ├── Person.dot │ ├── aggregation.puml │ ├── composition.puml │ ├── inheritance.jpg │ ├── inheritance.puml │ ├── person.jpg │ ├── person.puml │ ├── person_puml.jpg │ ├── soccer.jpg │ ├── student.dot │ ├── student.jpg │ ├── student.puml │ ├── student_puml.jpg │ └── vcr-objects.jpg ├── plotxy.jpg ├── projectile.jpg ├── python-block.jpg ├── python-name.jpg ├── pythonpath.jpg ├── pythonversion.jpg ├── se │ ├── costs_mistakes.jpg │ ├── gtestlib.jpg │ ├── percentage_costs.jpg │ ├── prototypingmodel.png │ ├── se-quality.jpg │ ├── spiralmodel.jpg │ ├── unittest_assert.jpg │ └── waterfall.jpg ├── vcr │ ├── buildingexample.jpg │ ├── combined_cd_id.jpg │ ├── coolpropdemo.jpg │ ├── ivcr-11-1.jpg │ ├── ivcr-ts.jpg │ ├── port_alias.jpg │ ├── two-stage-cascade.jpg │ ├── two_stage.jpg │ ├── uml │ │ ├── aggregation.jpg │ │ ├── components_device_siso.jpg │ │ ├── components_port.jpg │ │ ├── composition.jpg │ │ ├── device_siso.jpg │ │ ├── package-components.jpg │ │ ├── package-vcc.jpg │ │ ├── uml-compressor.jpg │ │ ├── uml-condenser.jpg │ │ ├── uml-connector.jpg │ │ ├── uml-evaporator.jpg │ │ ├── uml-expansionvalve.jpg │ │ ├── uml-port.jpg │ │ ├── uml-vccycle.jpg │ │ ├── vcc-flowchart.jpg │ │ ├── vcc_components.jpg │ │ ├── vccycle_relations_all.jpg │ │ └── vccycle_relations_instance.jpg │ ├── vcc-evaporator.jpg │ ├── vcr-11-2.jpg │ ├── vcr-compressor.jpg │ ├── vcr-condenser.jpg │ ├── vcr-cycle.jpg │ ├── vcr-evaporator.jpg │ ├── vcr-expansionvalve.jpg │ └── vcr-modelica.jpg ├── vsc-encoding.jpg ├── vscode-encoding.jpg ├── vscode-pylint.jpg └── while.jpg ├── mymath ├── __init__.py ├── circle.py └── root.py └── nb.bat /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/README.md -------------------------------------------------------------------------------- /guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/README.md -------------------------------------------------------------------------------- /guide/doc/GuideWSL(Chinese).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/GuideWSL(Chinese).md -------------------------------------------------------------------------------- /guide/doc/InstallSoftware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/InstallSoftware.md -------------------------------------------------------------------------------- /guide/doc/Introduction2Markdown(Chinese).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/Introduction2Markdown(Chinese).md -------------------------------------------------------------------------------- /guide/doc/Problem_Solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/Problem_Solution.md -------------------------------------------------------------------------------- /guide/doc/TheSimpleGit(Chinese).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/TheSimpleGit(Chinese).md -------------------------------------------------------------------------------- /guide/doc/UseSoftware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/UseSoftware.md -------------------------------------------------------------------------------- /guide/doc/img/downloadSEES.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/downloadSEES.jpg -------------------------------------------------------------------------------- /guide/doc/img/git-local.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/git-local.jpg -------------------------------------------------------------------------------- /guide/doc/img/git-process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/git-process.jpg -------------------------------------------------------------------------------- /guide/doc/img/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/github.jpg -------------------------------------------------------------------------------- /guide/doc/img/jupyter-bat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/jupyter-bat.jpg -------------------------------------------------------------------------------- /guide/doc/img/jupyter-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/jupyter-demo.png -------------------------------------------------------------------------------- /guide/doc/img/jupyter-hello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/jupyter-hello.jpg -------------------------------------------------------------------------------- /guide/doc/img/pip-mirror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/pip-mirror.jpg -------------------------------------------------------------------------------- /guide/doc/img/python37-update-pip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/python37-update-pip.jpg -------------------------------------------------------------------------------- /guide/doc/img/python38-install-path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/python38-install-path.jpg -------------------------------------------------------------------------------- /guide/doc/img/syntaxerror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/syntaxerror.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-ext-python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-ext-python.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-gcc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-gcc.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-git.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-markdown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-markdown.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-open-terminal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-open-terminal.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-python-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-python-0.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-python-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-python-1.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-taskbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-taskbar.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode-terminal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode-terminal.jpg -------------------------------------------------------------------------------- /guide/doc/img/vscode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/vscode.jpg -------------------------------------------------------------------------------- /guide/doc/img/wsl/code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/wsl/code.jpg -------------------------------------------------------------------------------- /guide/doc/img/wsl/ubuntu-account-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/wsl/ubuntu-account-1.jpg -------------------------------------------------------------------------------- /guide/doc/img/wsl/ubuntu-account.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/wsl/ubuntu-account.jpg -------------------------------------------------------------------------------- /guide/doc/img/wsl/ubuntu-install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/wsl/ubuntu-install.jpg -------------------------------------------------------------------------------- /guide/doc/img/wsl/ubuntu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/wsl/ubuntu.jpg -------------------------------------------------------------------------------- /guide/doc/img/wsl/wsl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/img/wsl/wsl.jpg -------------------------------------------------------------------------------- /guide/doc/softwares_debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/guide/doc/softwares_debian.md -------------------------------------------------------------------------------- /notebook/Unit1-1-Introduction_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit1-1-Introduction_Python.ipynb -------------------------------------------------------------------------------- /notebook/Unit1-2-Control_Flow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit1-2-Control_Flow.ipynb -------------------------------------------------------------------------------- /notebook/Unit1-3-Function_Module_Package.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit1-3-Function_Module_Package.ipynb -------------------------------------------------------------------------------- /notebook/Unit1-4-1-Tuple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit1-4-1-Tuple.ipynb -------------------------------------------------------------------------------- /notebook/Unit1-4-2-List.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit1-4-2-List.ipynb -------------------------------------------------------------------------------- /notebook/Unit1-4-3-Dict.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit1-4-3-Dict.ipynb -------------------------------------------------------------------------------- /notebook/Unit1-5-Files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit1-5-Files.ipynb -------------------------------------------------------------------------------- /notebook/Unit2-1-Matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit2-1-Matplotlib.ipynb -------------------------------------------------------------------------------- /notebook/Unit2-2-Understanding_Experimental_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit2-2-Understanding_Experimental_Data.ipynb -------------------------------------------------------------------------------- /notebook/Unit2-3-Lies_and_Statictics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit2-3-Lies_and_Statictics.ipynb -------------------------------------------------------------------------------- /notebook/Unit2-A-LaTex_Math.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit2-A-LaTex_Math.ipynb -------------------------------------------------------------------------------- /notebook/Unit3-1-Classes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit3-1-Classes.ipynb -------------------------------------------------------------------------------- /notebook/Unit3-2-Exception.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit3-2-Exception.ipynb -------------------------------------------------------------------------------- /notebook/Unit4-1-Modeling_Simulation_Engineering_Systems.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit4-1-Modeling_Simulation_Engineering_Systems.ipynb -------------------------------------------------------------------------------- /notebook/Unit4-2-RefrigerationCycle.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit4-2-RefrigerationCycle.ipynb -------------------------------------------------------------------------------- /notebook/Unit4-3-RefrigerationCycle_OOP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit4-3-RefrigerationCycle_OOP.ipynb -------------------------------------------------------------------------------- /notebook/Unit4-4-RefrigerationCycle_JSON.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit4-4-RefrigerationCycle_JSON.ipynb -------------------------------------------------------------------------------- /notebook/Unit4-5-RefrigerationCycle_Multistage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit4-5-RefrigerationCycle_Multistage.ipynb -------------------------------------------------------------------------------- /notebook/Unit4-A-RefrigerationCycle_Variable.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit4-A-RefrigerationCycle_Variable.ipynb -------------------------------------------------------------------------------- /notebook/Unit5-1-GCC_Make.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit5-1-GCC_Make.ipynb -------------------------------------------------------------------------------- /notebook/Unit5-2-GCC_Library.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit5-2-GCC_Library.ipynb -------------------------------------------------------------------------------- /notebook/Unit5-A-ctypes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit5-A-ctypes.ipynb -------------------------------------------------------------------------------- /notebook/Unit5-B-C_stdio.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit5-B-C_stdio.ipynb -------------------------------------------------------------------------------- /notebook/Unit6-1-Algorithmic_Complexity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit6-1-Algorithmic_Complexity.ipynb -------------------------------------------------------------------------------- /notebook/Unit6-2-Search_Algorithms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit6-2-Search_Algorithms.ipynb -------------------------------------------------------------------------------- /notebook/Unit6-3-Sorting_Algorithms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit6-3-Sorting_Algorithms.ipynb -------------------------------------------------------------------------------- /notebook/Unit6-4-Hash_Table.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit6-4-Hash_Table.ipynb -------------------------------------------------------------------------------- /notebook/Unit6-A-Data_Structure_C.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit6-A-Data_Structure_C.ipynb -------------------------------------------------------------------------------- /notebook/Unit7-1-Unittest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit7-1-Unittest.ipynb -------------------------------------------------------------------------------- /notebook/Unit7-2-Git.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit7-2-Git.ipynb -------------------------------------------------------------------------------- /notebook/Unit7-A-Intro_SoftwareEngineering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit7-A-Intro_SoftwareEngineering.ipynb -------------------------------------------------------------------------------- /notebook/Unit8-1-Linux.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit8-1-Linux.ipynb -------------------------------------------------------------------------------- /notebook/Unit8-2-Thread.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit8-2-Thread.ipynb -------------------------------------------------------------------------------- /notebook/Unit8-A-Programming_On_Linux.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/Unit8-A-Programming_On_Linux.ipynb -------------------------------------------------------------------------------- /notebook/code/python/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/circle.py -------------------------------------------------------------------------------- /notebook/code/python/cpu_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/cpu_monitor.py -------------------------------------------------------------------------------- /notebook/code/python/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/demo.py -------------------------------------------------------------------------------- /notebook/code/python/echo-client-cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/echo-client-cpu.py -------------------------------------------------------------------------------- /notebook/code/python/echo-server-cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/echo-server-cpu.py -------------------------------------------------------------------------------- /notebook/code/python/echo_client_cpu_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/echo_client_cpu_class.py -------------------------------------------------------------------------------- /notebook/code/python/multiconn-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/multiconn-server.py -------------------------------------------------------------------------------- /notebook/code/python/plt111.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/plt111.py -------------------------------------------------------------------------------- /notebook/code/python/pyqt6-gui-qtime_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/pyqt6-gui-qtime_client.py -------------------------------------------------------------------------------- /notebook/code/python/pyqt6-gui-qtimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/pyqt6-gui-qtimer.py -------------------------------------------------------------------------------- /notebook/code/python/pyqt6-gui-responsive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/pyqt6-gui-responsive.py -------------------------------------------------------------------------------- /notebook/code/python/pyqt6-gui-unresponsive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/pyqt6-gui-unresponsive.py -------------------------------------------------------------------------------- /notebook/code/python/pyqt6-gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/pyqt6-gui.py -------------------------------------------------------------------------------- /notebook/code/python/thesimplestqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/code/python/thesimplestqt.py -------------------------------------------------------------------------------- /notebook/coolpropdemo/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/coolpropdemo/bin/.gitignore -------------------------------------------------------------------------------- /notebook/coolpropdemo/bin/CoolProp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/coolpropdemo/bin/CoolProp.dll -------------------------------------------------------------------------------- /notebook/coolpropdemo/bin/CoolProp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/coolpropdemo/bin/CoolProp.lib -------------------------------------------------------------------------------- /notebook/coolpropdemo/bin/libCoolProp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/coolpropdemo/bin/libCoolProp.dll -------------------------------------------------------------------------------- /notebook/coolpropdemo/bin/libCoolProp.so.6.4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/coolpropdemo/bin/libCoolProp.so.6.4.1 -------------------------------------------------------------------------------- /notebook/coolpropdemo/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/coolpropdemo/demo.cpp -------------------------------------------------------------------------------- /notebook/coolpropdemo/include/CoolPropLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/coolpropdemo/include/CoolPropLib.h -------------------------------------------------------------------------------- /notebook/coolpropdemo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/coolpropdemo/main.c -------------------------------------------------------------------------------- /notebook/data/219_threePhaseIntelligentMeter_2015.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/219_threePhaseIntelligentMeter_2015.xls -------------------------------------------------------------------------------- /notebook/data/StudentIDInfo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/StudentIDInfo.csv -------------------------------------------------------------------------------- /notebook/data/US_temperatures.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/US_temperatures.csv -------------------------------------------------------------------------------- /notebook/data/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/default.txt -------------------------------------------------------------------------------- /notebook/data/global-fossil-fuel-consumption.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/global-fossil-fuel-consumption.csv -------------------------------------------------------------------------------- /notebook/data/launcherData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/launcherData.csv -------------------------------------------------------------------------------- /notebook/data/midWestHousingPrices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/midWestHousingPrices.csv -------------------------------------------------------------------------------- /notebook/data/midWestHousingPrices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/midWestHousingPrices.txt -------------------------------------------------------------------------------- /notebook/data/myfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/myfile.txt -------------------------------------------------------------------------------- /notebook/data/personrecords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/personrecords.csv -------------------------------------------------------------------------------- /notebook/data/personrecords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/personrecords.txt -------------------------------------------------------------------------------- /notebook/data/vcr-11-2-strid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/vcr-11-2-strid.csv -------------------------------------------------------------------------------- /notebook/data/vcr-11-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/vcr-11-2.csv -------------------------------------------------------------------------------- /notebook/data/wwc2019_q-f.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/data/wwc2019_q-f.csv -------------------------------------------------------------------------------- /notebook/demo/bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/bin/.gitignore -------------------------------------------------------------------------------- /notebook/demo/include/intDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/include/intDict.h -------------------------------------------------------------------------------- /notebook/demo/include/merge_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/include/merge_sort.h -------------------------------------------------------------------------------- /notebook/demo/include/number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/include/number.h -------------------------------------------------------------------------------- /notebook/demo/include/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/include/statistics.h -------------------------------------------------------------------------------- /notebook/demo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/makefile -------------------------------------------------------------------------------- /notebook/demo/makestatso.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/makestatso.mk -------------------------------------------------------------------------------- /notebook/demo/makestatso1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/makestatso1.mk -------------------------------------------------------------------------------- /notebook/demo/makestatso_nonobj.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/makestatso_nonobj.mk -------------------------------------------------------------------------------- /notebook/demo/makestatsodemo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/makestatsodemo.mk -------------------------------------------------------------------------------- /notebook/demo/obj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/obj/.gitignore -------------------------------------------------------------------------------- /notebook/demo/src/MergeSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/MergeSort.c -------------------------------------------------------------------------------- /notebook/demo/src/demo_linkedlist_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/demo_linkedlist_queue.c -------------------------------------------------------------------------------- /notebook/demo/src/demo_linkedlist_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/demo_linkedlist_stack.c -------------------------------------------------------------------------------- /notebook/demo/src/demomath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/demomath.c -------------------------------------------------------------------------------- /notebook/demo/src/demomath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/demomath.cpp -------------------------------------------------------------------------------- /notebook/demo/src/intDict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/intDict.c -------------------------------------------------------------------------------- /notebook/demo/src/merge_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/merge_sort.c -------------------------------------------------------------------------------- /notebook/demo/src/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/number.c -------------------------------------------------------------------------------- /notebook/demo/src/para_merge_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/para_merge_sort.cpp -------------------------------------------------------------------------------- /notebook/demo/src/statdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/statdemo.c -------------------------------------------------------------------------------- /notebook/demo/src/statistics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/demo/src/statistics.c -------------------------------------------------------------------------------- /notebook/img/162.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/162.PNG -------------------------------------------------------------------------------- /notebook/img/163.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/163.PNG -------------------------------------------------------------------------------- /notebook/img/164curve.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/164curve.PNG -------------------------------------------------------------------------------- /notebook/img/165.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/165.PNG -------------------------------------------------------------------------------- /notebook/img/21-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/21-12.jpg -------------------------------------------------------------------------------- /notebook/img/22-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/22-0.jpg -------------------------------------------------------------------------------- /notebook/img/22-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/22-10.jpg -------------------------------------------------------------------------------- /notebook/img/22-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/22-11.jpg -------------------------------------------------------------------------------- /notebook/img/22-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/22-12.jpg -------------------------------------------------------------------------------- /notebook/img/22-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/22-9.jpg -------------------------------------------------------------------------------- /notebook/img/Figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/Figure1.png -------------------------------------------------------------------------------- /notebook/img/Figure1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/Figure1.svg -------------------------------------------------------------------------------- /notebook/img/Figure11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/Figure11.svg -------------------------------------------------------------------------------- /notebook/img/Figure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/Figure2.png -------------------------------------------------------------------------------- /notebook/img/Figure2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/Figure2.svg -------------------------------------------------------------------------------- /notebook/img/Python-Slicing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/Python-Slicing.jpg -------------------------------------------------------------------------------- /notebook/img/PythonShell-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/PythonShell-demo.jpg -------------------------------------------------------------------------------- /notebook/img/PythonShell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/PythonShell.jpg -------------------------------------------------------------------------------- /notebook/img/bisection_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/bisection_method.png -------------------------------------------------------------------------------- /notebook/img/c11-figure1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/c11-figure1.jpg -------------------------------------------------------------------------------- /notebook/img/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/compile.png -------------------------------------------------------------------------------- /notebook/img/continue-break.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/continue-break.jpg -------------------------------------------------------------------------------- /notebook/img/demogccfolder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/demogccfolder.jpg -------------------------------------------------------------------------------- /notebook/img/df_concat_sort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/df_concat_sort.jpg -------------------------------------------------------------------------------- /notebook/img/df_www.loc[3].jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/df_www.loc[3].jpg -------------------------------------------------------------------------------- /notebook/img/ds/bems.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/bems.jpg -------------------------------------------------------------------------------- /notebook/img/ds/bigo-orders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/bigo-orders.jpg -------------------------------------------------------------------------------- /notebook/img/ds/bigo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/bigo.jpg -------------------------------------------------------------------------------- /notebook/img/ds/hash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/hash1.png -------------------------------------------------------------------------------- /notebook/img/ds/hashtable_separatechaining.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/hashtable_separatechaining.gif -------------------------------------------------------------------------------- /notebook/img/ds/linked-list-queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/linked-list-queue.png -------------------------------------------------------------------------------- /notebook/img/ds/linked-list-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/linked-list-stack.png -------------------------------------------------------------------------------- /notebook/img/ds/merge_sort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/merge_sort.jpg -------------------------------------------------------------------------------- /notebook/img/ds/merge_sort_pseudocode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/merge_sort_pseudocode.jpg -------------------------------------------------------------------------------- /notebook/img/ds/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/queue.png -------------------------------------------------------------------------------- /notebook/img/ds/queuelife.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/queuelife.jpg -------------------------------------------------------------------------------- /notebook/img/ds/selection_sort_pseudocode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/selection_sort_pseudocode.jpg -------------------------------------------------------------------------------- /notebook/img/ds/selsort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/selsort.jpg -------------------------------------------------------------------------------- /notebook/img/ds/selsort_unstable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/selsort_unstable.jpg -------------------------------------------------------------------------------- /notebook/img/ds/stable_sort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/stable_sort.jpg -------------------------------------------------------------------------------- /notebook/img/ds/stacklife.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/stacklife.jpg -------------------------------------------------------------------------------- /notebook/img/ds/unstable-selectionsort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/ds/unstable-selectionsort.jpg -------------------------------------------------------------------------------- /notebook/img/excel-powermeter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/excel-powermeter.jpg -------------------------------------------------------------------------------- /notebook/img/excel-powermeter_sample_hour_minute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/excel-powermeter_sample_hour_minute.jpg -------------------------------------------------------------------------------- /notebook/img/fig23-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/fig23-1.jpg -------------------------------------------------------------------------------- /notebook/img/fig57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/fig57.jpg -------------------------------------------------------------------------------- /notebook/img/fig58.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/fig58.PNG -------------------------------------------------------------------------------- /notebook/img/fig61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/fig61.jpg -------------------------------------------------------------------------------- /notebook/img/figure412.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/figure412.jpg -------------------------------------------------------------------------------- /notebook/img/git/Git_FileModified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/git/Git_FileModified.png -------------------------------------------------------------------------------- /notebook/img/git/Git_FileNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/git/Git_FileNew.png -------------------------------------------------------------------------------- /notebook/img/git/Git_StorageModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/git/Git_StorageModel.png -------------------------------------------------------------------------------- /notebook/img/git/TheProcessGit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/git/TheProcessGit.jpg -------------------------------------------------------------------------------- /notebook/img/git/git-code-diff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/git/git-code-diff.jpg -------------------------------------------------------------------------------- /notebook/img/if-else.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/if-else.jpg -------------------------------------------------------------------------------- /notebook/img/interpret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/interpret.png -------------------------------------------------------------------------------- /notebook/img/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/library.png -------------------------------------------------------------------------------- /notebook/img/line_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/line_style.jpg -------------------------------------------------------------------------------- /notebook/img/linux/Architecture-of-Linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/Architecture-of-Linux.png -------------------------------------------------------------------------------- /notebook/img/linux/Linux-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/Linux-desktop.jpg -------------------------------------------------------------------------------- /notebook/img/linux/Linux-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/Linux-shell.png -------------------------------------------------------------------------------- /notebook/img/linux/ThreadDiagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/ThreadDiagram.jpg -------------------------------------------------------------------------------- /notebook/img/linux/UnixFileLongFormat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/UnixFileLongFormat.png -------------------------------------------------------------------------------- /notebook/img/linux/con_and_par.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/con_and_par.jpg -------------------------------------------------------------------------------- /notebook/img/linux/copy2searchpath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/copy2searchpath.jpg -------------------------------------------------------------------------------- /notebook/img/linux/echo-server-client.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/echo-server-client.jpg -------------------------------------------------------------------------------- /notebook/img/linux/event-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/event-loop.png -------------------------------------------------------------------------------- /notebook/img/linux/filepermission.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/filepermission.jpg -------------------------------------------------------------------------------- /notebook/img/linux/gui-background-threading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/gui-background-threading.jpg -------------------------------------------------------------------------------- /notebook/img/linux/host-port-socket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/host-port-socket.jpg -------------------------------------------------------------------------------- /notebook/img/linux/installcoolprop2linux-make.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/installcoolprop2linux-make.jpg -------------------------------------------------------------------------------- /notebook/img/linux/installcoolprop2linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/installcoolprop2linux.jpg -------------------------------------------------------------------------------- /notebook/img/linux/linux-dev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/linux-dev.jpg -------------------------------------------------------------------------------- /notebook/img/linux/linux-dir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/linux-dir.jpg -------------------------------------------------------------------------------- /notebook/img/linux/linux-file-permission.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/linux-file-permission.jpg -------------------------------------------------------------------------------- /notebook/img/linux/linux-file-system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/linux-file-system.jpg -------------------------------------------------------------------------------- /notebook/img/linux/linux-hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/linux-hello.png -------------------------------------------------------------------------------- /notebook/img/linux/linux-path-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/linux-path-1.jpg -------------------------------------------------------------------------------- /notebook/img/linux/linux-wd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/linux-wd.jpg -------------------------------------------------------------------------------- /notebook/img/linux/ls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/ls.jpg -------------------------------------------------------------------------------- /notebook/img/linux/parallel_problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/parallel_problem.gif -------------------------------------------------------------------------------- /notebook/img/linux/pypi-os.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/pypi-os.jpg -------------------------------------------------------------------------------- /notebook/img/linux/socket-multi-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/socket-multi-client.png -------------------------------------------------------------------------------- /notebook/img/linux/socket-single-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/socket-single-client.png -------------------------------------------------------------------------------- /notebook/img/linux/socket_server_client.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/linux/socket_server_client.jpg -------------------------------------------------------------------------------- /notebook/img/make-cur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/make-cur.jpg -------------------------------------------------------------------------------- /notebook/img/makefile-f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/makefile-f.jpg -------------------------------------------------------------------------------- /notebook/img/moderncpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/moderncpp.png -------------------------------------------------------------------------------- /notebook/img/oop/OOP_Objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/OOP_Objects.png -------------------------------------------------------------------------------- /notebook/img/oop/OOP_ThreeCompartment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/OOP_ThreeCompartment.png -------------------------------------------------------------------------------- /notebook/img/oop/Person.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/Person.dot -------------------------------------------------------------------------------- /notebook/img/oop/aggregation.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/aggregation.puml -------------------------------------------------------------------------------- /notebook/img/oop/composition.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/composition.puml -------------------------------------------------------------------------------- /notebook/img/oop/inheritance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/inheritance.jpg -------------------------------------------------------------------------------- /notebook/img/oop/inheritance.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/inheritance.puml -------------------------------------------------------------------------------- /notebook/img/oop/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/person.jpg -------------------------------------------------------------------------------- /notebook/img/oop/person.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/person.puml -------------------------------------------------------------------------------- /notebook/img/oop/person_puml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/person_puml.jpg -------------------------------------------------------------------------------- /notebook/img/oop/soccer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/soccer.jpg -------------------------------------------------------------------------------- /notebook/img/oop/student.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/student.dot -------------------------------------------------------------------------------- /notebook/img/oop/student.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/student.jpg -------------------------------------------------------------------------------- /notebook/img/oop/student.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/student.puml -------------------------------------------------------------------------------- /notebook/img/oop/student_puml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/student_puml.jpg -------------------------------------------------------------------------------- /notebook/img/oop/vcr-objects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/oop/vcr-objects.jpg -------------------------------------------------------------------------------- /notebook/img/plotxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/plotxy.jpg -------------------------------------------------------------------------------- /notebook/img/projectile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/projectile.jpg -------------------------------------------------------------------------------- /notebook/img/python-block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/python-block.jpg -------------------------------------------------------------------------------- /notebook/img/python-name.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/python-name.jpg -------------------------------------------------------------------------------- /notebook/img/pythonpath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/pythonpath.jpg -------------------------------------------------------------------------------- /notebook/img/pythonversion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/pythonversion.jpg -------------------------------------------------------------------------------- /notebook/img/se/costs_mistakes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/se/costs_mistakes.jpg -------------------------------------------------------------------------------- /notebook/img/se/gtestlib.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/se/gtestlib.jpg -------------------------------------------------------------------------------- /notebook/img/se/percentage_costs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/se/percentage_costs.jpg -------------------------------------------------------------------------------- /notebook/img/se/prototypingmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/se/prototypingmodel.png -------------------------------------------------------------------------------- /notebook/img/se/se-quality.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/se/se-quality.jpg -------------------------------------------------------------------------------- /notebook/img/se/spiralmodel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/se/spiralmodel.jpg -------------------------------------------------------------------------------- /notebook/img/se/unittest_assert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/se/unittest_assert.jpg -------------------------------------------------------------------------------- /notebook/img/se/waterfall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/se/waterfall.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/buildingexample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/buildingexample.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/combined_cd_id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/combined_cd_id.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/coolpropdemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/coolpropdemo.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/ivcr-11-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/ivcr-11-1.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/ivcr-ts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/ivcr-ts.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/port_alias.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/port_alias.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/two-stage-cascade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/two-stage-cascade.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/two_stage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/two_stage.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/aggregation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/aggregation.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/components_device_siso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/components_device_siso.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/components_port.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/components_port.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/composition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/composition.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/device_siso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/device_siso.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/package-components.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/package-components.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/package-vcc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/package-vcc.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/uml-compressor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/uml-compressor.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/uml-condenser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/uml-condenser.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/uml-connector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/uml-connector.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/uml-evaporator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/uml-evaporator.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/uml-expansionvalve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/uml-expansionvalve.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/uml-port.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/uml-port.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/uml-vccycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/uml-vccycle.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/vcc-flowchart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/vcc-flowchart.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/vcc_components.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/vcc_components.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/vccycle_relations_all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/vccycle_relations_all.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/uml/vccycle_relations_instance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/uml/vccycle_relations_instance.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/vcc-evaporator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/vcc-evaporator.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/vcr-11-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/vcr-11-2.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/vcr-compressor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/vcr-compressor.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/vcr-condenser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/vcr-condenser.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/vcr-cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/vcr-cycle.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/vcr-evaporator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/vcr-evaporator.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/vcr-expansionvalve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/vcr-expansionvalve.jpg -------------------------------------------------------------------------------- /notebook/img/vcr/vcr-modelica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vcr/vcr-modelica.jpg -------------------------------------------------------------------------------- /notebook/img/vsc-encoding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vsc-encoding.jpg -------------------------------------------------------------------------------- /notebook/img/vscode-encoding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vscode-encoding.jpg -------------------------------------------------------------------------------- /notebook/img/vscode-pylint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/vscode-pylint.jpg -------------------------------------------------------------------------------- /notebook/img/while.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/img/while.jpg -------------------------------------------------------------------------------- /notebook/mymath/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /notebook/mymath/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/mymath/circle.py -------------------------------------------------------------------------------- /notebook/mymath/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thermalogic/SEES/HEAD/notebook/mymath/root.py -------------------------------------------------------------------------------- /notebook/nb.bat: -------------------------------------------------------------------------------- 1 | jupyter notebook --------------------------------------------------------------------------------