Objective: Solve the 2D heat conduction equation by using the point iterative techniques for both Steady State and Transient State Analysis. Following method should be implemented for solving Implicit Equations Jacobi Gauss-Seidel Successive over-relaxation Input: Boundary conditions: Top Boundary = 600 K Bottom…
Deepankar Ujalambe
updated on 20 Dec 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 Deepankar Ujalambe (11)
Linear Convection for varying number of nodes
Objective: Find Numerical Solution to the One-Dimensional Linear Convection equation. Compare the original and final velocity profiles in a single figure window for Number of nodes, n = 20, 40, 80 and 160. Explain the following phenomena observed from the solutions- numerical diffusion and instability and how they relate…
20 Dec 2021 04:30 PM IST
Linear Convection for varying timesteps
Objective: Find Numerical Solution to the One-Dimensional Linear Convection equation. Compare the original and final velocity profiles in a single figure window for time steps, dt = 1e-4, 1e-3, 1e-2, and 1e-1 Explain the CFL criteria that govern the linear convection equation. Does this criterion apply to an implicit solution…
20 Dec 2021 04:29 PM IST
Solving the steady and unsteady 2D heat conduction problem
Objective: Solve the 2D heat conduction equation by using the point iterative techniques for both Steady State and Transient State Analysis. Following method should be implemented for solving Implicit Equations Jacobi Gauss-Seidel Successive over-relaxation Input: Boundary conditions: Top Boundary = 600 K Bottom…
20 Dec 2021 04:27 PM IST
Steady vs unsteady state analysis
Objective: Compare the convergence rate [Number of iterations] of the steady state and transient [explicit and implicit] simulations and justify the numerics. Input: Boundary conditions: Top Boundary = 600 K Bottom Boundary = 900 K Left Boundary = 400 K Right Boundary = 800 K Error Criteria = 1e-4 STEADY STATE:…
20 Dec 2021 04:26 PM IST
Stability analysis in the unsteady problem
Objective: To compare the effect of Time Step variations on both Explicit and Implicit methods on the stability of the solution. Also evaluate the value at which the CFL becomes unstable. Input: Boundary conditions: Top Boundary = 600 K Bottom Boundary = 900 K Left Boundary = 400 K Right Boundary = 800 K Error Criteria…
20 Dec 2021 04:24 PM IST
Deriving 4th order approximation of a 2nd order derivative using Taylor Table method
CHALLENGE OBJECTIVE: I. Derive the following 4th order approximations of the second-order derivative. 1. Central difference 2. Skewed right-sided difference 3. Skewed left-sided difference Prove these skewed schemes are fourth-order accurate. II. Write a program in Matlab…
20 Dec 2021 04:20 PM IST
Solving the steady and unsteady 2D heat conduction problem
Objective: Solve the 2D heat conduction equation by using the point iterative techniques for both Steady State and Transient State Analysis. Following method should be implemented for solving Implicit Equations Jacobi Gauss-Seidel Successive over-relaxation Input: Boundary conditions: Top Boundary = 600 K Bottom…
20 Dec 2021 04:19 PM IST
Solving second order ODEs
Challenge: Solving ODE for pendulum swing for the given inputs Code for plotting and animation: %Code for solving Second Order ODE clear all close all clc %Inputs b = 0.05; %Damping Co-efft g = 9.81; %Accleration due to gravity l = 1; %Lenght of Pendulum m = 1; %Mass %Initial Conditions theta_0 = [0 ; 3]; %Initial Displacement…
25 May 2021 05:37 AM IST
Genetic Algorithm
Write a code in MATLAB to optimise the stalagmite function and find the global maxima of the function. Code clear all, close all, clc x = linspace(0,0.6,150); y = linspace(0,0.6,150); num_cases = 50; [xx yy] = meshgrid(x,y); for i = 1:length(xx) for j = 1:length(yy) input_vector(1) = xx(i, j); input_vector(2) = yy(i,j);…
25 May 2021 05:37 AM IST
Parsing NASA thermodynamic data
OBJECTIVES: 1. Write a function that extracts the 14 co-efficients and calculates the enthalpy, entropy and specific heats for all the species in the data file. You will be reading this file NASA thermodynamic data. The formulae are shown below. `(Cp)/R = a1 + a2.T + a3.T^2 + a4.T^3 + a5.T^4` `(H)/(RT) = a1 + a2.T/2…
25 May 2021 05:36 AM IST
Rankine cycle Simulator
OBJECTIVES Create a Rankine Cycle Simulator. Your code should calculate the state points of the Rankine Cycle based on user inputs. Then, plot the corresponding T-s and h-s plots for the given set of inputs. RANKINE CYCLE The Rankine cycle is an idealized thermodynamic cycle describing the process by which…
25 May 2021 05:36 AM IST