Link for the pendulum video. https://youtu.be/HFu0qDly-o0 Pendulum Function And Main program. function [theta_dot] = odefun_check_second_order(theta,t); theta_dot = zeros(2,1); theta_dot(1) = theta(2); theta_dot(2) = -theta(2)*0.5-(sin(theta(1)))*9.81; end clear all close all clc % time span % By increasing the…
Dinesh Poluru Baskar
updated on 16 Aug 2018
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 Dinesh Poluru Baskar (6)
BlockMesh Drill down challenge
Introduction : The main objective of this project is to show the flow through the Backward facing step. In this project we are going to use openFoam to run the set of programs inorder to see the result of Backward facing step. Here we are going to compare the results of different mesh grid and choose the best one…
02 Feb 2019 11:57 PM IST
Flow over a backward facing step
Introduction: This project is based on setting up an Backward facing step flow using Converge CFD. The main objective of this project is to study the velocity profiles of a Backward facing block which is meshed by using different kinds of grid points. The changes in these grid points will be helpful to study the velocity…
31 Jan 2019 11:10 AM IST
Channel flow simulation using CONVERGE CFD
Introduction: This project is based on setting up an channel flow using Converge CFD. The main objective of this project is to study the velocity profiles of a Block which is meshed by using different kinds of grid points. The changes in these grid points will be helpful to study the velocity profile and also to reduce…
31 Jan 2019 10:52 AM IST
Simulation of a 1D Super-sonic nozzle flow simulation using Macormack Method
Introduction : Nozzles are most commonly used in every field in order to study the liquid and air properties, because those two element plays a major role in engineering fields. However we may have many properties and the behaviour of fluids and air but we are still in position to find the exact solutions for the equations…
19 Aug 2018 10:03 AM IST
Solving the steady and unsteady 2D heat conduction problem
INTRODUCTION : The project is based on the solving a single equation in different iterations using different methods. As per the different methods equations are solved by their respective boundary and initial conditions. OBJECTIVE : The main objective of this program is to understand the temperature distribution over a…
16 Aug 2018 01:27 PM IST
Solving Ordinary Differential Equations using lsode
Link for the pendulum video. https://youtu.be/HFu0qDly-o0 Pendulum Function And Main program. function [theta_dot] = odefun_check_second_order(theta,t); theta_dot = zeros(2,1); theta_dot(1) = theta(2); theta_dot(2) = -theta(2)*0.5-(sin(theta(1)))*9.81; end clear all close all clc % time span % By increasing the…
16 Aug 2018 02:04 AM IST