-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCONTENTS.m
61 lines (60 loc) · 2.8 KB
/
CONTENTS.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
% -------------------------------------------------------------------------
% COMBUSTION TOOLBOX @v1.1.3
% A MATLAB-GUI based open-source tool for solving gaseous combustion problems
%
% Type of problems:
% * TP ------------------> Equilibrium composition at defined T and p
% * HP ------------------> Adiabatic T and composition at constant p
% * SP ------------------> Isentropic compression/expansion to a specified p
% * TV ------------------> Equilibrium composition at defined T and constant v
% * EV ------------------> Adiabatic T and composition at constant v
% * SV ------------------> Isentropic compression/expansion to a specified v
% * SHOCK_I -------------> Planar incident shock wave
% * SHOCK_R -------------> Planar reflected shock wave
% * SHOCK_OBLIQUE -------> Oblique incident shock wave
% * SHOCK_OBLIQUE_R -----> Oblique incident and reflected states
% * SHOCK_POLAR ---------> Shock polar diagrams
% * SHOCK_POLAR_R -------> Shock polar diagrams for incident and reflected states
% * SHOCK_POLAR_LIMITRR -> Shock polar diagrams in the limit of regular reflection
% * SHOCK_IDEAL_GAS -----> Planar incident shock wave for a fixed adiabatic index
% * DET -----------------> Chapman-Jouguet Detonation
% * DET_R ---------------> Reflected Chapman-Jouguet Detonation
% * DET_OBLIQUE ---------> Oblique Detonation
% * DET_POLAR -----------> Detonation polar diagrams
% * DET_OVERDRIVEN ------> Over-driven Detonation
% * DET_OVERDRIVEN_R ----> Over-driven reflected Detonation
% * DET_UNDERDRIVEN -----> Under-driven Detonation
% * DET_UNDERDRIVEN_R ---> Under-driven reflected Detonation
% * ROCKET --------------> Propellant rocket performance
%
% SEE THE EXAMPLES OR WEBSITE TO KNOW HOW TO START USING THE COMBUSTION TOOLBOX
%
% WEBSITE: https://combustion-toolbox-website.readthedocs.io/
% or type in the promt "websiteCT".
%
% Please to send feedback or inquiries type in the promt "uifeedback".
%
% Thank you for using the Combustion Toolbox!
%
% Citing:
% Cuadra, A., Huete, C., & Vera, M. (2024). Combustion Toolbox: An
% open-source thermochemical code for gas- and condensed-phase
% problems involving chemical equilibrium. arXiv:2409.15086.
%
% Cuadra, A., Huete, C., & Vera, M. (2024). Combustion Toolbox: A
% MATLAB-GUI based open-source tool for solving gaseous combustion
% problems. (v1.1.3). Zenodo. https://doi.org/10.5281/zenodo.5554911.
%
% @author: Alberto Cuadra Lara
% Postdoctoral researcher - Group Fluid Mechanics
% Universidad Carlos III de Madrid
%
% Last update Nov 10 2024
% -------------------------------------------------------------------------
help CONTENTS.m
% Set path
INSTALL();
% Display splash
gui_display_splash('pause', 2);
% Check for updates
combustiontoolbox.utils.checkUpdate();