Recent Releases of combustion_toolbox

combustion_toolbox - Combustion Toolbox v1.2.0

This release introduces significant enhancements, new features, bug fixes, and performance improvements across multiple modules of the Combustion Toolbox.

New Features and Enhancements

1. New +turbulence subpackage

A dedicated suite for turbulence analysis.

  • HelmholtzSolver class:

    • Implements Helmholtz-Hodge decomposition to separate 3D velocity fields into:
    • Solenoidal Component (divergence-free)
    • Dilatational Component (curl-free)
    • Includes validation methods to ensure decomposition accuracy.
  • TurbulenceSpectra class:

    • Computes turbulence energy spectra using:
    • Spherical Averaging
    • Cross-Plane Averaging (configurable for x, y, or z axes)
    • Provides functions to validate energy cascade properties and visualize spectra.
    • Functions to compute probability density functions (PDFs) and integral length scales.
    • New routines for computing and plotting joint-PDFs with advanced visualization features.
  • VelocityField class:

    • Encapsulates 3D velocity field data (u, v, w) and offers:
    • Methods for computing magnitudes.
    • Utilities for normalizing and scaling velocity fields.

2. New HTR Data Utility classes

A dedicated HTR data handling module has been introduced to facilitate postprocessing and data analysis from HTR solver simulations.

  • HTR Data Handling:
    • HTRDataReader class: Reads simulation data from the HTR solver, extracting velocity, temperature, pressure, and species concentration fields.
    • HTRDataAverage class: Provides postprocessing utilities for averaging HTR simulation results, computing spatial and temporal averages of key flow properties.

3. Refactored EquationState class

Significant refactoring has been performed in the Mixture class to improve flexibility, maintainability, and computational efficiency.

  • Introduced EquationState as an abstract base class for different equations of state.
  • New EquationStateIdealGas class implements the ideal gas law:
    • getPressure(T, V): Computes pressure using $P = \frac{RT}{V}$.
    • getVolume(T, P): Computes molar volume using $V = \frac{RT}{P}$.
  • This structure prepares the framework for future real gas models (e.g., Peng-Robinson, BKW, Heuzé EOS).

4. Improved Mixture class Computation

  • Refactored Methods:

    • updateComposition() to handle composition changes independently.
    • updateThermodynamics() to compute thermodynamic properties without redundant recalculations.
  • Optimized State-Setting:

    • setTemperature(), setPressure(), and setVolume() now trigger only necessary updates, avoiding redundant logic.
  • Performance Improvements:

    • Removed unnecessary unit conversions in shock and detonation solvers.
    • Optimized the ChemicalSystem class by avoiding get methods for indexElements and indexSpecies, reducing overhead.
    • Improved Units class performance by replacing handle functions with direct conversion factors.
  • New MixtureConfig class:

    • Introduced to handle configuration settings for Mixture objects.
    • Supports mol, molar fraction, or mass fraction composition units.
    • Allows for compact composition output using the FLAG_COMPACT option.
  • Include setTemperatureSpecies method to define initial temperatures for each species in a mixture.

    • Key Features:
    • Custom initialization of temperatures for individual species.
    • Automatic computation of equilibrium temperature.
    • Thermodynamic recalculations after changes in composition.
    • Example Usage: matlab set(mix, {'CH4'}, 'fuel', 1); set(mix, {'O2'}, 'oxidizer', 1); setTemperatureSpecies(mix, [300, 350]);

5. New Standalone Installer (INSTALL_STANDALONE.sh)

A cross-platform Bash script to automate installation of the standalone version.

  • Key Features:

    • Detects the operating system (Windows, macOS, or Linux).
    • Fetches the latest release assets from GitHub.
    • Extracts and executes the appropriate installer.
  • Usage Instructions: bash sh INSTALL_STANDALONE.sh

  • Repository Optimization:

    • Standalone installers are no longer stored in the repository.
    • They are now included as release assets to reduce repository size and improve maintainability.

Bug Fixes and Refinements

  • Fixed errors in thermochemical property calculations using the frozen approximation.
  • Resolved issues with internal energy and enthalpy calculations in the Species object.
  • Fixed molesGuess bug in Mixture, ensuring proper behavior when indexProducts differs from indexSpecies.
  • Corrected errors in rocketFAC method for subsonic regions.
  • Fixed setListSpecies method when complete combustion is selected.
  • Extended equivalence ratio range in EXAMPLE_HP_COMPLETE_INCOMPLETE to observe soot formation.
  • Updated comments and documentation for clarity and maintainability.

Full Changelog: https://github.com/CombustionToolbox/combustion_toolbox/compare/v1.1.3...v1.2.0

- MATLAB
Published by AlbertoCuadra 11 months ago

combustion_toolbox - Combustion Toolbox v1.1.3

What's Changed

The main database file (DB.mat) is now generated locally on the user's computer during installation instead of being pre-included. The INSTALL.m routine has been updated to perform this database generation, and standalone apps for all operating systems have been adjusted to incorporate these changes. Additionally, the validation/figures folder is no longer tracked in the repository to save space; it can be generated by running:

  • run_validation_CEA.m
  • run_validation_SDToolbox.m
  • run_validation_TEA.m

Note: The validations/figures directory must be created manually using:

matlab mkdir(fullfile('validations', 'figures'));

Full Changelog: https://github.com/CombustionToolbox/combustion_toolbox/compare/v1.1.2...v1.1.3

- MATLAB
Published by AlbertoCuadra over 1 year ago

combustion_toolbox - Combustion Toolbox v1.1.2

What's Changed

  • Solve: size error generateDatabase when DB.mat is loaded from cache by @AlbertoCuadra in https://github.com/CombustionToolbox/combustion_toolbox/pull/997

Full Changelog: https://github.com/CombustionToolbox/combustion_toolbox/compare/v1.1.1...v1.1.2

- MATLAB
Published by AlbertoCuadra over 1 year ago

combustion_toolbox - Combustion Toolbox v1.1.1

What's Changed

  • Force recompilation to resolve version mismatch issues between MATLAB FileExchange and GitHub
  • Add: example SHOCK_I_THERMO.m by @AlbertoCuadra in https://github.com/CombustionToolbox/combustion_toolbox/pull/989
  • Solve: address minor plotting errors in the plotFigure routine for improved visualization of variables

Full Changelog: https://github.com/CombustionToolbox/combustion_toolbox/compare/v1.1.0...v1.1.1

- MATLAB
Published by AlbertoCuadra over 1 year ago

combustion_toolbox - CT website v1.1.0

Major changes

  • Object-oriented: Combustion Toolbox is now object-oriented in v1.1.0. This transition enhances integration with other frameworks, boosts performance, and improves encapsulation. The three main modules, CT-EQUIL, CT-SD, and CT-ROCKET, now rely on the EquilibriumSolver, ShockSolver, DetonationSolver, and RocketSolver classes.

  • New algorithm for initial chemical composition estimation: The estimation of initial gaseous species composition has been upgraded from a fixed value approach to a more sophisticated max-min composition method, akin to the Mutation++ code. This estimation, solved using the Simplex algorithm (see Simplex.m and SimplexDual.m), provides more accurate and reliable results for all the species involved, including condensed species.

  • Improved chemical equilibrium solver: The chemical equilibrium solver, encapsulated in the EquilibriumSolver class, now includes slack variables to manage the composition of condensed species at chemical equilibrium. This approach, inspired by the Reaktoro and FastChem-Condensed codes, allows for simultaneous computation of all condensed species that meet the vapor pressure test.

  • Performance improvements: The new version offers a significant performance boost, with the code running 1.3x to 1.9x faster than v1.0.5.

  • Cached thermodynamic functions: The thermodynamic functions are typically the most called routines when using the Combustion Toolbox. Although their performance was already fast, these functions are now temporarily stored in the cache for even faster data access.

  • New code organization: The code components are now organized using namespaces (+folders), ensuring a more structured and maintainable codebase.

  • Full Changelog: For a detailed list of changes, visit the Full Changelog.

Full Changelog: https://github.com/CombustionToolbox/combustion_toolbox/compare/v1.0.5...v1.1.0

- MATLAB
Published by AlbertoCuadra over 1 year ago

combustion_toolbox - Combustion Toolbox v1.1.0beta

Major changes

  • Object-oriented: Combustion Toolbox is now object-oriented in v1.1.0beta. This transition enhances integration with other frameworks, boosts performance, and improves encapsulation. The three main modules, CT-EQUIL, CT-SD, and CT-ROCKET, now rely on the EquilibriumSolver, ShockSolver, DetonationSolver, and RocketSolver classes.

  • New algorithm for initial chemical composition estimation: Previous versions used a fixed value for estimating the initial composition of gaseous species. This has been improved by implementing a max-min composition method, similar to the Mutation++ code, and solved using the Simplex algorithm (refer to Simplex.m and SimplexDual.m).

  • Faster and more robust chemical equilibrium kernel: The chemical equilibrium solver, encapsulated in the EquilibriumSolver class, now includes slack variables to manage the composition of condensed species at chemical equilibrium. This approach, inspired by the Reaktoro and FastChem-Condensed codes, allows for simultaneous computation of all condensed species that meet the vapor pressure test.

  • Cached thermodynamic functions: The thermodynamic functions are typically the most called routines when using the Combustion Toolbox. Although their performance was already fast, now these functions are temporarily stored in the cache for even faster data access.

  • New code organization: The code components are now organized using namespaces (+folders), ensuring a more structured and maintainable codebase.

  • Full Changelog: For a detailed list of changes, visit the Full Changelog.

- MATLAB
Published by AlbertoCuadra over 1 year ago

combustion_toolbox - Combustion Toolbox v1.0.5

What's Changed

  • Update: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/939
  • Update: typos by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/940
  • Solve: hotfix error chemical equilibria with inert species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/941
  • Update: compile CT v1.0.5 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/942

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v1.0.4...v1.0.5

- MATLAB
Published by AlbertoCuadra about 2 years ago

combustion_toolbox - Combustion Toolbox v1.0.4

What's Changed

  • Solve: fix typo header by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/929
  • Solve: fix typo header #929 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/930
  • Update: include FLAGCONDENSED to specifically remove condensed species as possible products #931 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/932
  • Update: include/remove selection of ionized and condensed species in uielements app #933 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/934
  • Solve: error speciesLatex.m when there are two subscripts #935 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/936
  • Solve: error speciesLatex.m when there are two subscripts #935 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/937
  • Update: include standalone app for macOS and fix minor bugs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/938

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v1.0.3...v1.0.4

- MATLAB
Published by AlbertoCuadra about 2 years ago

combustion_toolbox - Combustion Toolbox v1.0.3

This release fixes a minor issue in CITATION.cff and a bug in the cpuinfo.m function when used on macOS.

What's Changed

  • Update: citation by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/916
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/917
  • Update: avoid *.DSStore files from macOS by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/924
  • Hotfix bug cpuinfo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/925
  • Update: CT v1.0.3 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/926
  • Update: citation and version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/927

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v1.0.2...v1.0.3

- MATLAB
Published by AlbertoCuadra about 2 years ago

combustion_toolbox - Combustion Toolbox v1.0.2

What's Changed

  • Update: rename thermo files by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/908
  • Solve: minor bug plot all species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/909
  • Solve: minor bug returning linear scale by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/910
  • Update: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/911
  • Add: example shock polar argon by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/912
  • Update: change default interpreter label option to short by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/913
  • Add: data for validation Caltech's SD-Toolbox by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/914
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/915

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v1.0.1...v1.0.2

- MATLAB
Published by AlbertoCuadra almost 3 years ago

combustion_toolbox - Combustion Toolbox v1.0.1

What's Changed

  • Update: example SHOCKPOLARR by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/903
  • Add: example SHOCKPOLARR with different thermochemical models by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/904
  • Update: version, .gitignore, and comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/905

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v1.0.0...v1.0.1

- MATLAB
Published by AlbertoCuadra almost 3 years ago

combustion_toolbox - Combustion Toolbox v1.0.0

What's Changed

  • Add: routine to generate suitable list of products for a given problem #718 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/796
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/797
  • Solve: minor bug name C3 singlet by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/798
  • Update: include #718 for proper functionality by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/799
  • Update: improve performance routine findproducts by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/800
  • Solve: error Tritium Burcat's database by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/801
  • Solve: error tritium not recognized and indeces position shifted by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/802
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/803
  • Solve: indeces position shifted by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/804
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/805
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/806
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/807
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/808
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/809
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/810
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/811
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/813
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/814
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/815
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/816
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/817
  • Add: routine to check temperature range of the species, update comments, and solve minor bug related with the number of species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/818
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/819
  • Add: include again combustion toolbox package installer by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/820
  • Add: plot thermodynamic properties of individual species using CT (PCHIP + linear extrapolation) or NASA polynomials by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/821
  • Add: routine to compare the extrapolation of polynomial fits with higher order or linearized terms by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/822
  • Update: assign databases as properties for the apptest class (unitTests) and reorganize folder by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/823
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/824
  • Add: include more settings in uipreferences by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/825
  • Solve: error when uiputfile is closed by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/826
  • Update: get miscellaneous data by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/827
  • Update: reorganize exportresults routine by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/828
  • Update: example Zeldovich mechanism by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/829
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/830
  • Update: typos by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/831
  • Update: comments and reorganize functions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/832
  • Update: comments, name, and location routines by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/833
  • Add: allow inputs in %f:%f:%f format (GUI) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/834
  • Update: rewrite guisaveresults by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/835
  • Update: rewrite checkinputs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/836
  • Update: rewrite export results by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/837
  • Add: routine to get a title of the problem solved by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/838
  • Add: include pre-shock Mach number as a possible inputs in setprop routine #839 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/840
  • Update: comments and include examples in the routines by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/841
  • Update: rewrite check ionized species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/842
  • Update: rewrite gettitle by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/843
  • Update: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/844
  • Add: include more properties in the list of interpreterlabel by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/845
  • Update: rewrite plothugoniot routine by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/848
  • Update: comments functions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/849
  • Update: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/850
  • Update: reduce repository size #847 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/851
  • Update: rewrite INSTALL function #852 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/853
  • Add: CONTRIBUTING.md #76 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/854
  • Update: include comments, examples, and optional arguments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/855
  • Solve: minor bug with new update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/856
  • Solve: minor bug miscellaneous struct not loaded by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/857
  • Update: include comments, fixed minor bug, and add possibility to set legends only to the given objects by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/858
  • Solve: compatible with sphinx by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/859
  • Update: add comments to newton method and if error recalculate without guessmoles by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/860
  • Add: validations CT-ROCKET with frozen chemistry (post-combustion) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/861
  • Add: calculations with calorically imperfect gases with frozen chemistry by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/862
  • Solve: the INSTALL file did not save the path permanently by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/863
  • Update: rewrite routines to perform a LIA analysis with multicomponent mixtures using the Combustion Toolbox by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/864
  • Update: reorganize folders by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/865
  • Add: routine to get the input conditions for the HTR solver using the Combustion Toolbox by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/866
  • Add: Mach number by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/867
  • Update: checkupdate routine by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/868
  • Update: include message as output of check update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/870
  • Solve: error updating GUI for CT-ROCKET with FAC model by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/871
  • Add: frozen chemistry to the GUI (CT-ROCKET included) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/872
  • Update: rewrite guicomputemachorvelocity and include %f:%f:%f format as possible input by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/873
  • Update: icons by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/874
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/875
  • Major update: initialization, findproducts when LS is not given, GUI, several bugs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/876
  • Update: installers by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/877
  • Update: CITATION.cff by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/878
  • Validation: add a routine that tests the quality of results against other thermochemical codes - part II #531 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/879
  • Add: unittest CT-ROCKET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/880
  • Update: include Mach number by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/882
  • Solve: error calculations SV by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/883
  • Add: line style of polar plots given by self.Misc.config by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/884
  • Solve: error value minimum wave angle in detobliquetheta by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/885
  • Add: include polar and oblique calculations in the GUI #699 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/886
  • Add: example rocket FAC with different thermochemical models by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/887
  • Add: solve SHOCKPOLARR for a given wave or deflection angle by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/888
  • Add: include routine to compute properties of a mixture given its temperature, pressure, and composition by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/891
  • Add: unit test for SV chemical transformations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/892
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/893
  • Add: figureid for polar diagrams by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/894
  • Solve: error check update routine by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/895
  • Add: include solution of the weak oblique detonation by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/896
  • Add: include basis of the properties to plot by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/897
  • Update: rewrite postresults #846 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/898
  • Update: extract additional inputs from previous calculations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/899
  • Update: remove unreleased functions and fixed typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/900
  • Update: installers by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/901
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/902

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.997...v1.0.0

- MATLAB
Published by AlbertoCuadra almost 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.99g

What's Changed

  • Solve: error size app with small screens by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/791
  • Solve: error chemical equilibrium with diatomic reactions #792 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/793
  • Solve: major error computation condensed species #769 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/794
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/795

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.996...v0.9.997

- MATLAB
Published by AlbertoCuadra almost 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.99f

What's Changed

  • Solve: error parametric study (post-processing) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/770
  • Add: validation with multiple condensed species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/771
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/772
  • Update: reorganize CT-ROCKET module by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/773
  • Update: rewrite root finding methods by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/774
  • Update: list chemical species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/775
  • Solve: minor bug labels by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/776
  • Update: get elapsed time by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/777
  • Update: check solution diverging by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/778
  • Update: improve performance filling the property matrix by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/779
  • Update: removed by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/780
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/781
  • Add: post-processing by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/782
  • Update: call computesound by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/783
  • Update: example as in Cuadra2023a by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/784
  • Solve: major error computation condensed species #769 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/785
  • Solve: avoid error with FLAGFAST = true by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/786
  • Add: more validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/787
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/788
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/790

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.995...v0.9.996

- MATLAB
Published by AlbertoCuadra almost 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.99e

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.994...v0.9.995

- MATLAB
Published by AlbertoCuadra almost 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.99d

What's Changed

  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/766
  • Update: readme by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/767
  • Solve: error check condensed species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/768

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.993...v0.9.994

- MATLAB
Published by AlbertoCuadra about 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.99c

What's Changed

  • Solve: error title in plotmolarfractions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/705
  • Update: title position by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/706
  • Solve: error legends (GUI) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/708
  • Update: new customization parameters by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/709
  • Update: include Rankine-Hugoniot slope parameter by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/710
  • Solve: remove and rename old routines by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/711
  • Solve: error computing sound velocity by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/712
  • Update: generalize oxidizer of reference by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/713
  • Solve: missing argument in fit function by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/714
  • Update: return same mixture if singular matrix is recurrent by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/720
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/721
  • Update: deprecated by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/722
  • Solve: error calculation post-shock speed of sound by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/723
  • Add: calculate chemical equilibrium considering a calorically perfect gas by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/724
  • Update: compute only cj speed for first case by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/725
  • Update: include parameter Npointspolar by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/726
  • Add: compute sound velocity considering frozen chemistry by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/727
  • Add: calculate Gamma by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/728
  • Update: reduce overheads by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/729
  • Update: generalize routine to use other methods by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/730
  • Solve: error in post-shock velocity by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/731
  • Add: test to check performance of detguess for overdriven detonations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/732
  • Add: CT-ROCKET validation for MMH/N2O4 mxitures by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/733
  • Update: compatibility with new version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/734
  • Solve: minor bug definitions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/735
  • Add: include calculations considering a calorically perfect gas by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/736
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/737
  • Update: compute strong shock depending of nargout by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/738
  • Add: compute heat release by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/739
  • Add: include routine to compute the limit of regular reflections #719 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/740
  • Solve: bug compatibility oxidizer of reference by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/741
  • Update: compatibility with new version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/742
  • Update: rewrite routines, better performance, improve guess from previous calculation, and add check to avoid singular matrix by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/743
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/744
  • Add: include helmholtz reduced system, rewrite functions, include calculations with ionized species, and increase performance by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/745
  • Update: comment by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/746
  • Add: calculate pre-shock and post-shock states considering a calorically perfect gas by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/747
  • Solve: error with electron position in the stoichiometric matrix by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/748
  • Update: include flagfast by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/751
  • Add : thermodynamic derivatives with reduced system of equations #752 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/753
  • Solve: wrong folder by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/754
  • Update: compute thermodynamic derivates using the Jacobian from the reduced system of equations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/755
  • Solve: error chemical equilibrium with ionized species in the reduced system of equations #750 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/756
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/757
  • Update: comments and names of variables by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/758
  • Update: perform chemical equilibria calculations with the reduced sytem of equations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/759
  • Solve: error compatibility with atomsoxref #760 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/761
  • Update: rename subroutine by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/762
  • Solve: error initial monitor position vector by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/763
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/764
  • Add: package by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/765

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.992...v0.9.993

- MATLAB
Published by AlbertoCuadra about 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.992

What's Changed

  • Add: new validations ROCKET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/636
  • Add: validations ROCKET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/637
  • Update: save equivalence ratio in mix2 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/638
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/639
  • Update: boost performance by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/640
  • Update: rename several functions and add new functionalities by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/641
  • Add: gets the vector of the defined property for the given set of species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/642
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/643
  • Solve: error unpack inputs listspecies by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/644
  • Update: include several customization variables for plotting by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/645
  • Update: rename variables by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/646
  • Add: routine to see Combustion Toolbox website by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/647
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/648
  • Add: non-ideal Equations of State (EoS) #649 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/650
  • Update: README by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/651
  • Solve: error computations polar detonations #652 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/653
  • Add: include routines to display splash in the main monitor and to check for updates by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/654
  • Update: change welcome message in the CT-GUI command window with its current version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/655
  • Add: read solar abundances in log 10 scale and compute the initial molar fractions of the mixture for a given metallicity (default: 1) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/656
  • Add: include NASA's CEA routine to obtain the initial guess for a CJ detonation by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/657
  • Add: validations data for CT-ROCKET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/658
  • Add: calculate thermodynamic properties of pure and mixed thermal plasmas over a wide range of temperature and pressure #659 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/660
  • Add: uielements a new add-on that facilitate the selection of the species in the database #661 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/663
  • Solve: typo white spaces comments and add comments and codename to DB by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/664
  • Add: gridlayout, comments, codename and close function by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/665
  • Solve: bug with some combinations and added more possibilities by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/666
  • Add: include more options in figure customization by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/667
  • Add: include more predefined list of species using function findspeciesLS by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/668
  • Update: readme by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/669
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/670
  • Solve: typo - area ratio was not included (CT-ROCKET) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/671
  • Update: allow selection of EoS in CT-EQUIL and reduce properties matrix dimensions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/672
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/673
  • Update: minor changes by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/674
  • Add: official logo CT by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/677
  • Update: logo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/678
  • Update: logo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/679
  • Add: logo increase size export for readme by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/680
  • Add: logo for Matlab FileExcange by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/681
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/684
  • Add: major update to v0.9.99 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/685
  • Update: lowercase folders name by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/686
  • Update: lowercase folders name #687 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/688
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/689
  • Update: lowercase folders name #687 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/690
  • Update: reorganize folders by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/691
  • Update: reorganize and rename folders by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/692
  • Solve: bottleneck saving results in the GUI by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/693
  • Solve: error when changing equivalence-ratio/composition after clicked a node in the UITree #694 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/695
  • Update: rename variables in the GUI functions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/696
  • Update: compile installers with the bugs fixed by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/698
  • Update: minor changes and solved several bugs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/701
  • Solve: splash is not center for 2k resolutions #700 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/702
  • Update: solve minor bug when plotting and removed deprecated displaysweepresults (not all of the calls) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/703
  • Update: installers by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/704

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.93...v0.9.992

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.99b

What's Changed

  • Update: lowercase folders name by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/686
  • Update: lowercase folders name #687 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/688
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/689
  • Update: lowercase folders name #687 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/690
  • Update: reorganize folders by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/691
  • Update: reorganize and rename folders by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/692
  • Solve: bottleneck saving results in the GUI by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/693
  • Solve: error when changing equivalence-ratio/composition after clicked a node in the UITree #694 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/695
  • Update: rename variables in the GUI functions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/696
  • Update: compile installers with the bugs fixed by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/698
  • Update: minor changes and solved several bugs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/701
  • Solve: splash is not center for 2k resolutions #700 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/702
  • Update: solve minor bug when plotting and removed deprecated displaysweepresults (not all of the calls) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/703
  • Update: installers by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/704

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.99...v0.9.99b

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.99a

What's Changed

  • Add: new validations ROCKET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/636
  • Add: validations ROCKET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/637
  • Update: save equivalence ratio in mix2 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/638
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/639
  • Update: boost performance by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/640
  • Update: rename several functions and add new functionalities by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/641
  • Add: gets the vector of the defined property for the given set of species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/642
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/643
  • Solve: error unpack inputs listspecies by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/644
  • Update: include several customization variables for plotting by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/645
  • Update: rename variables by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/646
  • Add: routine to see Combustion Toolbox website by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/647
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/648
  • Add: non-ideal Equations of State (EoS) #649 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/650
  • Update: README by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/651
  • Solve: error computations polar detonations #652 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/653
  • Add: include routines to display splash in the main monitor and to check for updates by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/654
  • Update: change welcome message in the CT-GUI command window with its current version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/655
  • Add: read solar abundances in log 10 scale and compute the initial molar fractions of the mixture for a given metallicity (default: 1) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/656
  • Add: include NASA's CEA routine to obtain the initial guess for a CJ detonation by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/657
  • Add: validations data for CT-ROCKET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/658
  • Add: calculate thermodynamic properties of pure and mixed thermal plasmas over a wide range of temperature and pressure #659 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/660
  • Add: uielements a new add-on that facilitate the selection of the species in the database #661 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/663
  • Solve: typo white spaces comments and add comments and codename to DB by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/664
  • Add: gridlayout, comments, codename and close function by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/665
  • Solve: bug with some combinations and added more possibilities by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/666
  • Add: include more options in figure customization by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/667
  • Add: include more predefined list of species using function findspeciesLS by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/668
  • Update: readme by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/669
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/670
  • Solve: typo - area ratio was not included (CT-ROCKET) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/671
  • Update: allow selection of EoS in CT-EQUIL and reduce properties matrix dimensions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/672
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/673
  • Update: minor changes by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/674
  • Add: official logo CT by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/677
  • Update: logo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/678
  • Update: logo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/679
  • Add: logo increase size export for readme by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/680
  • Add: logo for Matlab FileExcange by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/681
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/684

Add: major update to v0.9.99 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/685. This is a major update with tons of changes described below.

Add:

  • Add: include routines in CT-SD to compute polar detonations #652
  • Add: non-ideal Equations of State (EoS) #649 (draft)
  • Add: incorporate the new set of calculations into the app #320
  • Add menu bar: preference, include extended settings #173
  • Add: custom display species - app #7
  • Add: examples for underdriven detonations on incident and reflected flow configurations
  • Add: example for polar denotations
  • Add: example to compute sonic and detached lines of polar detonations
  • Add: validations of polar detonations with Zhang2022 and Cantera within Caltech's Shock and Detonation Toolbox
  • Add: example to compute chemical composition of exoplanet WASP-43b
  • Add: example for polar shocks with regular reflections
  • Add: include splash image when opening Combustion Toolbox's GUI
  • Add: include possibility of generate plots inside the GUI for any of the parameters contained in the mixture structure.
  • Add: include callback to get molecular weight of the mixture
  • Add: new logo for Combustion Toolbox
  • Add: new add-on uielements to analyse and set the species in the problem
  • Add: new routine INSTALL.m to install the toolbox as a package that can be used with the desktop environment (plain code) or with the GUI
  • Add: new routine plotmolarfractions to generate plots for any mixture property against its composition with many customization capabilities
  • Add: new routine to obtain the polynomial regression for a given dataset (x, y) and polynomial order n
  • Add: new routine to smooth data (x, y) using curve fitting
  • Add: include new colorpalettes inside the brewermap.m function
  • Add: include routine to append cells
  • Add: include routine to append structs with same fieldnames
  • Add: new routine to print errors/warnings
  • Add: new validations with many pure condensed species at the same time
  • Add: new incident routine that mimicks the work of Zhang et al. 2022. However, is several orders of magnitude slower that our code.
  • Add: now we differentiate inerts as frozen species and the calculations can be performed taking this into account

Update:

  • Update: set_species routines. The properties matrix now only includes the necessary thermodynamic parameters to perform all the calculations
  • Update: compute_properties has been rewritten taking into accout the changes in the properties matrix
  • Update: the computations using the kernel CT-EQUIL now can choose the equation of state from ProblemDescription.m (ideal gas so far, non-ideal gases are still under development)
  • Reorganized files and folders
  • Optimize: function save_data #4
  • snapshot folder has been removed
  • Update: uiabout add-on has been rewritten
  • Update: add-ons now are called using its matlab .m exported file instead of the .mlapp file. The latter have been moved to the path ./gui/add-ons/mlapp
  • Update: reduced default legends fontsize from config.fontsize - 2 to config.fontsize - 4
  • Update: removed several callbacks that used uiwait in case of error. Now it only prints the error.
  • Update: routine getmonitorpositions.m now has a delta factor that return a decreased value of the width and height of the screen selected.
  • Update: comments and fixed some typos
  • Update: default colorpalette now is seaborn
  • Update: validations with the new colorpalette
  • Update: installers combustiontoolboxapp, combustiontoolboxstandalone, combustiontoolboxpackage
  • Update: calculation of guess of reflected shocks. Now we do not call the function roots, instead we have included the analytical solution of the polynomial.

Solve:

  • Solve: error computation composition oxidizers for a given equivalence ratio #682
  • Solve: error resize GUI #2 (only for uielements and uiabout)
  • Solve: error with mean molecular weight and molecular weight

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.93...v0.9.99

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.93

What's Changed

  • Add: validation properties rocket module by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/613
  • Add: validation rocket module using IAC model by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/614
  • Solve: minor discrepancies in CTROCKET FAC model compared with NASA's CEA code #592 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/615
  • Solve: minor discrepancies in CTROCKET FAC model compared with NASA's CEA code #592 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/616
  • Add: validation rocket module using FAC model by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/617
  • Update: legend by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/618
  • Update: generalize interpretlabel routine by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/619
  • Add: include tab to do custom plots from last set of results #621 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/620
  • Update: include preshock and postshock velocities by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/622
  • Update: interpreter label for properties by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/623
  • Update: add new settings for plots by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/624
  • Update: rewrite plot functions and cell2vector by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/625
  • Solve: remove display species that are not in the final mixture by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/626
  • Add: validations rocket module by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/627
  • Update: validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/628
  • Solve: error detection object axes by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/629
  • Solve: error typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/630
  • Add: include tab to do custom plots from last set of results #621 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/631
  • Update: comment by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/632
  • Solve: error solution NASA's CEA by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/633
  • Update: Combustion Toolbox v0.9.93 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/634

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.92...v0.9.93

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.92

What's Changed

  • Update: validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/587
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/588
  • Solve: error label headers - ROCKET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/589
  • Update: examples rockets by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/590
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/591
  • Solve: error computation molecular weight of mixture with condensed species #593 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/594
  • Update: include moles nitrogen and graphite by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/595
  • Update: include convert pressure units functions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/596
  • Solve: error equilibrium module with condensed species of species whose elements are not in the initial mixture #597 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/598
  • Update: include molecular weight by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/599
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/600
  • Update: include display debug parameters and removed relaxation of initial guess by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/601
  • Update: include sound velocity and pre- post- shock velocities by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/602
  • Update: added a new palette of colors by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/603
  • Update: include more species in soot formation extended by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/604
  • Update: include validation of properties for Detonations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/605
  • Update: include index property with max error by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/606
  • Update: change default color palette for single comparisons and include more properties by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/607
  • Update: include solution for an equivalence ratio = 4 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/608
  • Update: include validation for more properties by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/609
  • Add: validations for detonations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/610
  • Update: validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/611
  • Update: Combustion Toolbox v0.9.92 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/612

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.91...v0.9.92

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.91

What's Changed

  • Update: rewrite displayresults routine to print any given number of states #275 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/561
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/562
  • Update: generalize calls for equation of state by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/563
  • Update: include try catch by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/564
  • Solve: index of reactant species do not match #565 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/566
  • Update: include possibility of copy a previous setup #567 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/568
  • Solve: error name of mixture in the UITree #569 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/570
  • Solve: set the temperature of condensed reactants to a different value that the fixed temperature #571 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/572
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/573
  • Add: compute compressibility factor of the mixture by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/574
  • Add: Example of adiabatic flame temperature comparison between complete and incomplete combustion by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/575
  • Solve: singularity when two rows of the coefficient matrix are identical #576 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/577
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/578
  • Add: example HP effect of pressure by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/579
  • Solve: error computation of entropy of mixing with condensed species #580 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/581
  • Solve: error computation thermodynamic derivatives with condensed species #582 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/583
  • Solve: blank spaces do not appear by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/584
  • Update: validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/585
  • Update: list species soot formation extended by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/586

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.9...v0.9.91

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.9

What's Changed

  • Update: include new example; improve performance of cell2vector; update comments in TunningProperties by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/541
  • Update: improve performance #542 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/543
  • Update: comment debug by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/544
  • Update: remove deprecated by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/545
  • Update: comments of all the functions - part II #529 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/546
  • Update: comments and typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/547
  • Add: UILicense by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/548
  • Solve: error size vectors and name variable by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/549
  • Update: new version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/550
  • Solve: errors in the App by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/551
  • Solve: error calculation fuel/oxidizer ratios by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/552
  • Solve: error computations with inert species (app) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/553
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/554
  • Add: standalone installer by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/555
  • Update: GUI snapshot and solved typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/556
  • Solve: error enthalpy of cryogenic species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/557
  • Update: change swtCondensed to phase by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/558
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/559
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/560

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.8...v0.9.9

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.8

What's Changed

  • Solve: error computing thermo with ions #536 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/537
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/538
  • Update: change proportioninertsO2 to proportionoxidizers #103 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/539
  • Update: installer by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/540

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.7...v0.9.8

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.7

What's Changed

  • Solve: error display tags by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/522
  • Add: compute chemical equilibrium TP with the reduced scheme by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/523
  • Update: reorganization by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/524
  • Solve: minor bug in get properties from setfigure by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/525
  • Update: validation by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/526
  • Add: example blast furnace from Madeley & J.M. Toguri (1973) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/527
  • Update: join equilibrium and equilibriumions in one file #494 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/528
  • Add: include minimization helmholtz by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/532
  • Add: validation EV in CI and CD tests by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/533
  • Add: validations cuadra2022 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/535

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.6...v0.9.7

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.6

What's Changed

  • Update: non-editable textbox by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/519
  • Solve: error reshape partial thermodynamic derivatives by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/520
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/521

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.5...v0.9.6

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.5

What's Changed

  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/405
  • Merge pull request #405 from AlbertoCuadra/master by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/406
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/407
  • Update: change location to deprecated by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/408
  • Update: location and comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/409
  • Update: default color palette by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/410
  • Update: legend fontsize by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/411
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/412
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/413
  • Update: fixed minor bug legends by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/414
  • Solve: error conversion of some species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/415
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/416
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/417
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/418
  • Solve: differences with CEA in some of the validations #319 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/420
  • Solve: differences with CEA in some of the validations #319 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/421
  • Update: comments and minor changes by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/422
  • Update: equivalence ratio by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/423
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/424
  • Important Update: boost performance up to 40% by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/425
  • Update: computation of adibatic index in special cases by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/426
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/428
  • Update: default list species, comments, and validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/429
  • Solve: error species with different temperature by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/430
  • Update: compute the Gibbs energy by combining the polynomials h0 and s0 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/431
  • Update: add FLAGFAST and mass balance tolerance by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/432
  • Update: add FLAGFAST by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/433
  • Update: add mass balance tolerance by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/434
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/435
  • Add: validation SHOCKRIONIZATION by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/437
  • Update: add few species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/438
  • Update: database by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/439
  • Update: comments and default itrocket value by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/440
  • Solve: error readcea by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/441
  • Solve: error read previous results by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/442
  • Update: minor changes by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/443
  • Add: example Zelenik 1968 and new tests CI by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/444
  • Update: comment by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/445
  • Add: compute exit points rocket by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/446
  • Update: rewrite computations using Newton-Raphson method by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/447
  • Update: change guess values for incident shocks and the temperature guess (thermochemical transformations) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/449
  • Add: include plots with mixture ratio (rockets) and include gravity in the computation of th specific impulses by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/450
  • Add: include routine to get all non-empty mixtures from PS and for a given pattern by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/451
  • Add: include solution for different area ratios (rockets) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/452
  • Add: routine to check relative error and correction factor values per iteration by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/453
  • Update: include guess moles as a possible argument by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/454
  • Update: rename FLAG ionized species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/455
  • Update: database by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/456
  • Add: include elements S and Si in the computation of the equivalence ratio by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/457
  • Add: list species for Si/HC/O2/N2 PROPELLANTS by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/458
  • Add: sub-pass function to check singular matrix by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/459
  • Update: rewrite for CHONSiS mixtures and changed location as a sub-pass function of DefineF by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/460
  • Update: compatible with current version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/461
  • Add: include computation for different area ratios (rockets) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/462
  • Add: include Finite-Area-Chamber model (rockets) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/463
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/464
  • Add: Extended Third Millennium Thermodynamic Database of New NASA Polynomials with Active Thermochemical Tables by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/465
  • Update: TEA validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/466
  • Add: validation TEA WASP-43b by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/467
  • Add: more optional parameters by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/468
  • Update: rename by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/469
  • Add: validation TEA WASP-43b by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/470
  • Add: routines to read solar abundances and compute molar fractions of the initial mixture by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/471
  • Update: remove prefix database by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/472
  • Update: rewrite funcions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/473
  • Add: routines to get format NASA thermo from Millenium Database by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/474
  • Solve: error range temperatures polynomial fits by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/475
  • Update: join NASA thermo and Millenium thermo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/476
  • Add: tritium as element (isotope hydrogen) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/477
  • Update: change HS from NASA thermo to Millenium thermo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/478
  • Solve: error name species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/480
  • Major update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/482
  • Add: data validation CEA rocket and routines to validate it by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/483
  • Update: read data CEA and minor updates by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/484
  • Add: include length problems solved by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/485
  • Add: default max iteration gibbs method by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/486
  • Add: recover segregated method (develop) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/487
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/488
  • Add: find species in a given list by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/489
  • Update: undo fixed maxit by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/490
  • Add: tests by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/491
  • Solve: minor bug by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/492
  • Solve: errors by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/493
  • Update: iinclude itmax for gibbs min and charge balance by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/495
  • Develop to hotfix by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/496
  • Solve: error correction factor by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/497
  • Hotfix by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/498
  • HOTFIX - Solve: error computation correction factor and STOP by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/499
  • Update: results with HOTFIX by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/500
  • Update: decrease tolerance by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/501
  • Add: include new thermo functions and update newton method guess composition by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/502
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/503
  • Add: new thermo functions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/505
  • Add: 3rd order Newton-Raphson by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/506
  • Add: guess moles by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/507
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/508
  • Solve: remove testing funtions by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/509
  • Solve: error comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/510
  • Add: 3rd order Newton-Raphson method by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/511
  • Add: debug convergence by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/512
  • Solve: error compute thermodynamic derivatives with ions #513 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/514
  • Update: validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/515
  • Minor update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/516
  • Update: validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/517
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/518

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.1...v0.9.5

- MATLAB
Published by AlbertoCuadra over 3 years ago

combustion_toolbox - Combustion Toolbox v0.9.1

What's Changed

  • Update: rename variables as mix by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/321
  • Add: compute Regular Reflections for detonations #322 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/323
  • Add: plot shock polars reflected state #324 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/325
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/326
  • Solve: minor bug by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/332
  • Update: name folders by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/379
  • Solve: minor bug with the comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/389
  • Add: deprecated folder for functions that are going to be removed by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/390
  • Update: rename variable by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/391
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/392
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/393
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/394
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/395
  • Update: rename folder by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/396
  • Update: rename folder by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/397
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/398
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/399
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/400
  • Update: for dark mode by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/401
  • Update: comments of all the functions #381 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/402

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.9.0...v0.9.1

- MATLAB
Published by AlbertoCuadra almost 4 years ago

combustion_toolbox - Combustion Toolbox v0.9.0

What's Changed

  • Add: new shock polar solution by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/243
  • Update: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/244
  • Update: shock polar by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/245
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/246
  • Update: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/247
  • Update: fontsize by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/248
  • Add: solution with Ar anc CO2 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/249
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/250
  • Add: compute shock polars and oblique shocks for a given deflection angle by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/251
  • Add: include new problems by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/252
  • Add: plot routine for shock polars by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/253
  • Update: include new display results for shock polars by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/254
  • Add: include results for weak and strong solution of an oblique shock by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/256
  • Add: include solution for weak and strong solution of an oblique shock by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/257
  • Add: include solution for weak and strong solution of an oblique shock by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/258
  • Update: now we save the parameters of the oblique shock in the post-shock state variable by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/259
  • Update: distinguish from 2 states or more by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/260
  • Update: version and comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/261
  • Update: remove old files by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/264
  • Update: save filename as functionname by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/265
  • Update: rename figures by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/266
  • Add: compute shockoblique for a given deflection angle or for a given wave angle #267 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/268
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/269
  • Add: validation shock polar with SDToolbox and CANTERA by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/270
  • Update: figure by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/271
  • Solve: error print error by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/272
  • Update: rename variables by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/273
  • Add: include print results for 4 states by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/274
  • Add: include print results for 4 states by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/276
  • Update: location by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/278
  • Add: include routine that includes the filenames as nodes in a uitree object by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/279
  • Update: change color by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/280
  • Add: allow to call the validation routines inside the app #277 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/281
  • Solve: error the pressure did not change for each case by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/282
  • Add: uivalidation with info of the system, cpu time, problems solved by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/283
  • Solve: minor bug command window by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/284
  • Solve: minor bug command window by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/285
  • Add: shock oblique reflected by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/286
  • Add: solve shock polar reflected by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/287
  • Solve: error filedir linux uivalidations #288 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/289
  • Solve: error show results for RR solution by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/290
  • Add: include regular reflection (RR) solution #263 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/291
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/292
  • Update: separate the routine dedicated to plotting the solutions of the shock polars by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/293
  • Update: homogenize variable names and few comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/294
  • Solve: error with the previous changes done in shock polar by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/295
  • Update: compute u1n from wave angle by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/297
  • Add: include default number of points in shock polar by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/298
  • Add: get order of a value in base 10 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/299
  • Update: rename variables by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/300
  • Update: set a fixed position for shock polars by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/301
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/302
  • Update: improve performance - change setdiff to ismember (does not sort) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/303
  • Solve: error variable name by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/304
  • Update: improve performance by 65% by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/305
  • Update: remove - needless by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/306
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/307
  • Add: solve Regular Reflection - shock polar for a given theta or beta #309 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/310
  • Solve: minor bug by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/311
  • Update: accelerated Convergence in Newton’s Method (Gerlach, 1994) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/312
  • Solve: minor bug print results by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/313
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/314
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/316
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/317
  • Update: comment by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/318

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.8.9...v0.9.0

- MATLAB
Published by AlbertoCuadra almost 4 years ago

combustion_toolbox - Combustion Toolbox v0.8.9

What's Changed

  • Update: remove unnecessary definition by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/230
  • Solve: error removed an important variable by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/231
  • Add: compute polar shock as in SD toolbox (draft) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/232
  • Update: oblique detonation (test) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/234
  • Update: improve plots polar shocks and solve some minor bugs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/235
  • Update: include sketch by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/236
  • Update: error dashed line by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/237
  • Solve: error dashed line by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/238
  • Update: module M2 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/239
  • Update: version and date by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/240
  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/242

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.8.7...v0.8.9

- MATLAB
Published by AlbertoCuadra almost 4 years ago

combustion_toolbox - Combustion Toolbox v0.8.7

What's Changed

  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/217
  • Add: routine to compute reflected detonation #216 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/218
  • Add: Set legend to the given axes by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/219
  • Update: if newton method fails make one call to steffensen-Aitken method by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/220
  • Update: validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/221
  • Solve: set vshock velocity = u by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/222
  • Update: add listname to a case by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/223
  • Update: compatible with App in case of Nan values by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/224
  • Include other standard set of species, e.g., H2(L) with O2(L) #172 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/225
  • Update: geometric visualization of Lagrange Multipliers by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/226
  • Add: overdriven reflected detonation by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/227
  • Add: overdriven reflected detonation by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/228
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/229

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.8.3...v0.8.7

- MATLAB
Published by AlbertoCuadra almost 4 years ago

combustion_toolbox - Combustion Toolbox v0.8.3

What's Changed

  • Update: comments by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/205
  • Solve: numerical error by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/206
  • Add: plots for rockets by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/207
  • Update: range by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/208
  • Solve: rethink about detonationoverdrive routine - very slow compare… by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/209
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/210
  • Solve: bottleneck unnecessary computations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/211
  • Solve: error root finding with newton method by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/212
  • Update: comment code under development by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/213
  • Solve: error commented an important step by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/214
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/215

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.8.0...v0.8.3

- MATLAB
Published by AlbertoCuadra almost 4 years ago

combustion_toolbox - Combustion Toolbox v0.8.0

What's Changed

  • Add: theoretical rocket performance (IAC) #20 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/203
  • Update: date by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/204

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.7.7...v0.8.0

- MATLAB
Published by AlbertoCuadra almost 4 years ago

combustion_toolbox - Combustion Toolbox v0.7.7

What's Changed

  • Update: duplicated by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/163
  • Add: species2latex by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/164
  • Update: legends in latex by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/165
  • Add: example TP seminar by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/166
  • Add: validation of properties with CEA and solve a major bug on equations of condensed species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/175
  • Add: validations of properties and solve bug related to cP by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/176
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/177
  • Add: new CEA test by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/178
  • Add: test coverage by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/179
  • Update: reorganize functions and include new validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/180
  • Solve: error database - few interpolation points by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/181
  • Add: include apptest framework by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/182
  • Add: include apptest framework by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/183
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/184
  • Update: remove condensed species (explosives) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/185
  • Add: include enthalpy NASA polynomials by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/186
  • Add: include speciesh (griddedinterpolant) by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/187
  • Update: miscellaneous by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/188
  • Update: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/189
  • Update: change path by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/190
  • Update: results with new DB and tolN 1e-18 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/191
  • Update: increase tolerance 1e-14 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/192
  • Update: avoid floating-point error by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/193
  • Update: comment by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/194
  • Update: generalize export results as in app by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/195
  • Solve: typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/196
  • Update: version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/197
  • Update: misc by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/198
  • Solve: error with condensed species with temperature range by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/199
  • Update: reuce tolerance gibbs minimization method by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/200
  • Update: new security policy by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/201
  • Update: version v0.7.7 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/202

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.7.3...v0.7.7

- MATLAB
Published by AlbertoCuadra almost 4 years ago

combustion_toolbox - Combustion Toolbox v0.7.3

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.7.1

What's Changed

  • Add: plot TP vs molar fraction for SV problems by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/153
  • Update: comments and version by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/154
  • Important update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/155

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.7.0...v0.7.1

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.7.0

What's Changed

  • Solve: major errors by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/151
  • Add: SP and SV problems by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/152

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.6.0...v0.7.0

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.6.0

What's Changed

  • Update: recompute validation with the new design by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/148
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/149
  • Update: version 0.6.0 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/150

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.5.2...v0.6.0

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.5.2

What's Changed

  • Add: new functionalities by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/147

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.5.1...v0.5.2

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.5.1

What's Changed

  • Solve: error in function "saveresults" #126 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/143
  • Solve: error add product species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/145
  • Update: recompile app by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/146

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.5.0...v0.5.1

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.5.0

What's Changed

  • Update: version error previous MATLAB FileExchange by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/142

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.4.5...v0.5.0

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.4.5

What's Changed

  • Update: app by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/141

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.4.1...v0.4.5

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.4.1

What's Changed

  • Update: reorganize folders #90 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/127
  • Add: compute a set problems defining a vector #129 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/130
  • Solve: error vshock for SHOCKR #131 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/132
  • Solve: error 1 computation by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/133
  • Solve: error computations with equivalence ratio by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/134
  • Add: include messages in the command window by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/135
  • Solve: error computation air #128 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/136
  • Solve: error showing mixture composition #137 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/138
  • Update: version and description of the App by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/139

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.4.022...v0.4.1

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.4.022

What's Changed

  • Add: installer as a MATLAB toolbox by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/125

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.4.021...v0.4.022

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.4.021

What's Changed

  • Update: remove old .mlapp files and rename app file by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/122
  • Solve: error solving DET #123 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/124

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.4.02...v0.4.021

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v4.0.2

What's Changed

  • Update: results DET by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/102
  • Minor bug GUI and Typo by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/104
  • Validation: repeat example TP TEA code by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/105
  • Update: snapshot1 by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/106
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/108
  • Validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/109
  • Add: save plots validations by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/110
  • Update: rename files by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/111
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/112
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/114
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/116
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/118
  • Solve: error reference elements by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/119
  • Add: save results as .xls or .mat formats by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/121

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.90...v0.4.2

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.90

Compatible MATLAB File Exchange

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.9

What's Changed

  • Fixed minor bugs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/99
  • Solve: error equilibrium with condensed species by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/100

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.82...v0.3.9

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.82

What's Changed

  • Add: UIFeedback and more by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/84
  • Update by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/96

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.74...v0.3.82

- MATLAB
Published by AlbertoCuadra about 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.74

What's Changed

  • Fixed some minor bugs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/82

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.72...v0.3.74

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.72

What's Changed

  • Fixed minor bugs by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/78

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.7...v0.3.72

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.7

What's Changed

  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/77

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.651...v0.3.7

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.651

What's Changed

  • git cache cleared by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/74

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.65...v0.3.651

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.65

What's Changed

  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/71
  • Develop by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/72
  • Update: move NASADatabase items to folder DataBases and fixed error generating DB by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustiontoolbox/pull/73

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.6...v0.3.65

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.6

Solve: - Partially solve #38 - Minors bugs

Update: - Print convergence routines - Stop criteria Steffensen's root finding algorithm

What's Changed

  • Create CODEOFCONDUCT.md by @AlbertoCuadra in https://github.com/AlbertoCuadra/combustion_toolbox/pull/66

Full Changelog: https://github.com/AlbertoCuadra/combustion_toolbox/compare/v0.3.541...v0.3.6

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.541

Open-access

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.54

Add: - New funtions to get themo properties from a given mixture (#55)

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.53

Update: - New routine to solve overdriven detonations (#27)

Add: - New plots for Chapman-Jouguet detonations and overdriven detonations - New routine "print mixture properties"

Fixed bugs: - remove unnecessary functions from routine "closing"

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.51

Fixed: - Solve: error in computeguessdet routine - Solve: detuterium was not included as an element - Solve: error in generate database routine

Update: - Update: generate database routine. Now generates a complete DB considering all the species in DB_master - Add: the aforementioned DB is included as a .mat file

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.5

Add: - Add: computations for cryogenic liquified species (#34) - Add: new routine for the guess estimate of the jump conditions in detonations (#31) - Update: display results routine as in the python version (#42) - Add: print_convergence function

Fixed: - Solve: error computations matrix A in equilibrium_ions (#47) - Solve: error net charge balance is not lower than tolerance (#35) - Solve: error computing NASA polynomials for T>6000 K (#10)

Validations: - Validation: internal validation of the results for cryogenic species, shocks and detonations.

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion PyToolbox v0.3.45

Add: - Database for theoretical solution of diatomic shocks - Routine to generate the aforementioned Database - Routine to theoretically solve shocks waves with diatomic species considering only the dissociation of this #36

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.4

Add: - Computations with ideal plasmas (mixtures with ionized species) [#29].

Fixed bugs: - Error computing theoretical equivalence ratio when a carbon element was not present in the List of Species.

Example:

Figure 1: Hugoniot curves for different molecular gases at pre-shock temperature T1 = 300 K and pressure p1 = 1 atm [numerical results obtained with Combustion Toolbox (lines) and contrasted with NASA’s Chemical Equilibrium with Applications (CEA) code excluding ionization (symbols)].

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.3

Update:

  • New routine to resolve Chapman-Jouguet detonations assuming ideal gases (#26). This routine is 100 times faster than the one based on SD-toolbox.
  • Results are in good agreement with Chemical Equilibrium with Applications (CEA).

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.3-beta

Update:

  • New routine to resolve Chapman-Jouguet detonations assuming ideal gases (#26). This routine is 100 times faster than the one based on SD-toolbox.

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.2

Update:

  • New set of routines to resolve incident (#18) and reflected (#25) shocks waves.
  • New set of routines to resolve thermodynamics derivatives to respect temperature (#21) and pressure (#22).

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.0

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.3.0-beta

Update: @v0.3.0-beta

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.2.0

Redefined GUI - alpha version Included solver: Gibbs free energy minimization method

- MATLAB
Published by AlbertoCuadra over 4 years ago

combustion_toolbox - Combustion Toolbox v0.1.0

Update: @v0.1.0

- MATLAB
Published by AlbertoCuadra over 6 years ago