1) Main code for parsing the NASA data file, plotting graph: %% To write a MATLAB code for parsing the NASA thermodynamic data file % and to extract 14 coefficients of the equation for deriving thermodynamic % properties like specific heat, entropy, and enthalpy. %% Also to find the molecular mass of each species and to…
Mohana Karthik B J
updated on 08 Sep 2021
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Mohana Karthik B J (6)
Week 7 Challenge - Assembly Workbench
Aim: To understand the assembly of Catia V5 Objective: to understand the basic concept of assembly workbench & to use proper constraints to assemble different part files in Catia V5 Here are the two models as per the challenge drawings, 1. Quick return mechanism 2. CV joint Quick Return Mechanism: Assembly Drawing:…
30 Aug 2023 07:45 PM IST
Project 2 - Rankine cycle Simulator
1) Program for Simulating Rankine Cycle: clear all close all clc %% Explanation of Rankine Cycle %Disp and fprintf command is used to show the output or given text on command window disp('<strong>Rankine Cycle (or) Rankine Vapor Cycle</strong>'); fprintf('\nProcess(1-2): Isentropic Expansion in the Turbine\n');…
19 Sep 2021 04:29 PM IST
Project 1 - Parsing NASA thermodynamic data
1) Main code for parsing the NASA data file, plotting graph: %% To write a MATLAB code for parsing the NASA thermodynamic data file % and to extract 14 coefficients of the equation for deriving thermodynamic % properties like specific heat, entropy, and enthalpy. %% Also to find the molecular mass of each species and to…
08 Sep 2021 03:29 PM IST
Week 4.1 - Genetic Algorithm
1) Main function for Genetic Algorithm: clear all close all clc %% Providing a search space for the stalagmite function x = linspace(0,0.6,150) y = linspace(0,0.6,150) %Meshgrid command returns 2-D grid coordinates based on the coordinates contained in vectors x and y. [xx yy] = meshgrid(x,y); %% Creating the surface plot…
22 Aug 2021 07:17 PM IST
Week 3 - Solving second order ODEs
1) Main program for plotting the graph and creating the animations for the pendulum motion.%To solve the ODE, that represents the equation of motion of a simple pendulum with damping. clear all close all clc %% Input required for solving ODE equation of motion of a simple pendulum with damping %Damping coefficient b=0.05;…
08 Aug 2021 06:06 PM IST
Plotting the P-V diagram of the Otto cycle and to find the thermal efficiency of the Otto cycle
Definition of Otto cycle: The Otto cycle is a thermodynamic cycle that is commonly used in all spark ignition engines (i.e is petrol engines - 2-stroke or 4-stroke). In a four-stroke engine, there are typically four strokes which are named as; 1) Intake stroke 2) Compression stroke 3) Power stroke 4) Expansion…
02 Aug 2021 04:43 PM IST