Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Fluid mechanics terminologies

1.Kinematic viscosity of a fluid can be defined as proportion of dynamic viscosity of fluid to density of that fluid. It\'s unit is m^2/s  2.Dynamic viscosity of fluid is defined as internal resistance to the flow of fluid between it\'s molecules in presence of some external force. Dynamic viscosity is given by …

    Project Details

    Loading...

    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.

    Please  login to add a comment

    Other comments...

    No comments yet!
    Be the first to add a comment

    Read more Projects by C Ajay Sekar (27)

    Discretization and derivation of fourth order approximations of second order derivative using taylor table and matlab

    Objective:

    Aim: To derive 4th order approximations of second order derivative for central difference, right skewed and left skewed schemes and write a matlab program to compare error between them   Method The code for comparison of error between different schemes is shown below clc clear all close all dx=linspace(1/40,1/20,25);…

    calendar

    26 Jan 2020 08:03 PM IST

      Read more

      Simulation of fluid flow through pipe using openfoam for different wedge angles

      Objective:

      Objective To simulate fluid flow through pipeusing open foam for differnt wedge angles  and compare results between them   Method For simulation, instead of the complete cylinder a right circular cylindrical sector/wedgeis considered as the computational domain. This is done to avoid unnecessarycomputations by…

      calendar

      26 Jan 2020 07:28 PM IST

      • CFD
      Read more

      Simulation of fluid flow through pipe using open foam

      Objective:

      Objective To simulate fluid flow thorugh pipe using open foam solver for incompressible flows (icofoam) and to write a program in matlab to genetrate mesh file required for solving fluid flow in pipe    Method: From Hagen poiseuille pressure drop equation we can determine the decrease in thepressure per unit…

      calendar

      26 Jan 2020 06:52 PM IST

      Read more

      FVM literature review

      Objective:

      The finite volume method (FVM) is a method for representing and evaluating partialdiffrential equation in the form of algebraic equations. This method is apply for over theentire volume & properties are assumed to be concentrated at geometric centre of thevolume concerned. Actually finite volume method there is use…

      calendar

      26 Jan 2020 05:59 AM IST

        Read more

        Flow over backward facing step using openfoam

        Objective:

        Objective: To simulate flow over backward flow step using icofoam solver in open foam Setup: 1. Open the terminal in the Linux Operating System2. just type \'cd $FOAM_TUTORIALS\', and it takes you to the in-built tutorial files of the OpenFOAMsoftware. Type \'ls\' (list) to view the contents in the tutorials.3. Type \'cd…

        calendar

        26 Jan 2020 05:51 AM IST

        Read more

        Solution of quasi static1D supersonic nozzle flow equations conservative and non conservative using Macromack method for

        Objective:

        Objective: To solve the conservative and non conservative governing equations of 1D supersonic nozzle and understand its flow properties at throat,and to perform a grid independence test   Code: Code for Non conservative form close all clear all clc n=31; gamma=1.4; x =linspace(0,3,n); dx=x(2)-x(1); a=1+2.2*(x-1.5).^(2);…

        calendar

        25 Jan 2020 08:20 PM IST

          Read more

          Solution of 2D Conduction equation of a wall

          Objective:

          Objective: To obtain solution of 2D heat conduction equation using discretization and 3 different iterative methods   Method Steady state method   clear all close all clc % Defining lenghts of domain Lx=1; Ly=1; % Defining the number of mesh points and w w=1.56; nx=ny=10; % Dividing the lengths along x and y…

          calendar

          23 Jan 2020 12:46 AM IST

            Read more

            Pendulum simulation

            Objective:

            Main function: clc clear all close all L=1; timespan = linspace(0,20,30); yo = [0 3]; [theta,t] = lsode (\"pendulum_equation\", yo, timespan); a=theta(:,1); for i= 1:length(a) x(i)= L*sin(a(i)); y(i)= -L*cos(a(i)); x(1)=0;y(1)=0; plot([x(1) x(i)],[y(1) y(i)]) hold on plot (x(i),y(i),\'k.\',\'MarkerSize\',16); grid on axis([-1.5…

            calendar

            22 Aug 2018 08:38 PM IST

              Read more

              Linear convection coding

              Objective:

              For C = 1 and time = 0.4 econds,the original function is of step like function while the final velocity profile is of parabolic shape whose image is attached below .   Moreover it is seen that initially the corners of step function are very sharp in nature but with progress in time this sharpness decreases gradually…

              calendar

              15 Aug 2018 04:25 PM IST

                Read more

                Tension test

                Objective:

                1.1Problem statement: To simulate the tension test of specimen made of steel 1006 material using explicit dynamics, to compare the results for different materials and displacements.       1.2Modelling description: The model downloaded in STEP format is imported into ANSYS design modeller   1.3Analysis…

                calendar

                10 Jul 2018 12:02 PM IST

                  Read more

                  Simply supported beam with Load acting in centre

                  Objective:

                  https://projects.skill-lync.com/projects/ANALYIS-OF-STRESS-AND-DEFORMATION-IN-A-BEAM-31251

                  calendar

                  08 Jul 2018 06:32 AM IST

                    Read more

                    Stress Concentration plate with hole

                    Objective:

                    https://projects.skill-lync.com/projects/analysis-of-stress-concentration-in-flat-plate

                    calendar

                    08 Jul 2018 06:30 AM IST

                      Read more

                      Effect of dx on errors of different approximations

                      Objective:

                      Fourth_order_approx program code function out = fourth_order_approx(x,dx); analytical_derivative=((x^3*cos(x))-(sin(x)*3*x^2))/x^6; fourth_order_equation=((sin(x-2*dx)/(x-2*dx)^3)-(8*sin(x-dx)/(x-dx)^3)+(8*sin(x+dx)/(x+dx)^3)-(sin(x+2*dx)/(x+2*dx)^3))/(12*dx) out=abs(fourth_order_equation-analytical_derivative); end​  …

                      calendar

                      27 Jun 2018 10:42 AM IST

                        Read more

                        Effect of dx on errors of different approximations

                        Objective:

                        Fourth_order_approx program code function out = fourth_order_approx(x,dx); analytical_derivative=((x^3*cos(x))-(sin(x)*3*x^2))/x^6; fourth_order_equation=((sin(x-2*dx)/(x-2*dx)^3)-(8*sin(x-dx)/(x-dx)^3)+(8*sin(x+dx)/(x+dx)^3)-(sin(x+2*dx)/(x+2*dx)^3))/(12*dx) out=abs(fourth_order_equation-analytical_derivative); end​  …

                        calendar

                        27 Jun 2018 10:42 AM IST

                          Read more

                          Effect of dx on errors of different approximations

                          Objective:

                          Fourth_order_approx program code function out = fourth_order_approx(x,dx); analytical_derivative=((x^3*cos(x))-(sin(x)*3*x^2))/x^6; fourth_order_equation=((sin(x-2*dx)/(x-2*dx)^3)-(8*sin(x-dx)/(x-dx)^3)+(8*sin(x+dx)/(x+dx)^3)-(sin(x+2*dx)/(x+2*dx)^3))/(12*dx) out=abs(fourth_order_equation-analytical_derivative); end​  …

                          calendar

                          27 Jun 2018 10:41 AM IST

                            Read more

                            Numerical discretization

                            Objective:

                            Program coding: clear all close all x=pi/3; dx=1/40; analytical_function=sin(x)/x^3; analytical_derivative=((x^3*cos(x))-(sin(x)*3*x^2))/x^6; first_order_approx=(((sin(x+dx))/((x+dx)^3))-((sin(x)/x^3)))/(dx); second_order_approx=(((sin(x+dx))/((x+dx)^3))-((sin(x-dx))/(x-dx)^3))/(2*dx); fourth_order_approx=((sin(x-2*dx)/(x-2*dx)^3)-(8*sin(x-dx)/(x-dx)^3)+(8*sin(x+dx)/(x+dx)^3)-(sin(x+2*dx)/(x+2*dx)^3))/(12*dx);…

                            calendar

                            26 Jun 2018 03:56 PM IST

                              Read more

                              Identification of stoichiometric coefficients using Octave

                              Objective:

                              For Alkanes: Solving the coefficients manually for the equations, we get stoichiometric coefficient to be 2 and 3.5 respectively when no of moles of carbon are 1 and 2 correspondingly, Developing an equation uing these two points and plotting it matlab gives following graph. >> x=linspace(1,25,100); >> y=linspace(1,25,100);…

                              calendar

                              26 Jun 2018 11:37 AM IST

                                Read more

                                Boundary conditons and intial conditions

                                Objective:

                                Boundary conditions are those condition that are given at extremes of domain of given PDE Initial conditions are those that are given at lower limits or values of domain of given PDE  Types of boundary conditions in PDEs: Dirichilet boundary condition: In this boundary condition,the value of the function is specified…

                                calendar

                                23 Jun 2018 04:58 AM IST

                                  Read more

                                  Fluid mechanics terminologies

                                  Objective:

                                  1.Kinematic viscosity of a fluid can be defined as proportion of dynamic viscosity of fluid to density of that fluid. It\'s unit is m^2/s  2.Dynamic viscosity of fluid is defined as internal resistance to the flow of fluid between it\'s molecules in presence of some external force. Dynamic viscosity is given by …

                                  calendar

                                  22 Jun 2018 02:27 PM IST

                                    Read more

                                    Fluid mechanics terminologies

                                    Objective:

                                    1.Kinematic viscosity of a fluid can be defined as proportion of dynamic viscosity of fluid to density of that fluid. It\'s unit is m^2/s  2.Dynamic viscosity of fluid is defined as internal resistance to the flow of fluid between it\'s molecules in presence of some external force. Dynamic viscosity is given by …

                                    calendar

                                    22 Jun 2018 02:27 PM IST

                                      Read more

                                      Basic math definitions

                                      Objective:

                                      1. Divergence of vector field defines the degree of expansion or outward flow of that vector field. It is said to be positive if vector field moves outward and negative if vector field moves inward.       2.Gradient of vector is defined as rate of change of that particular vector.    3.Curl…

                                      calendar

                                      21 Jun 2018 12:40 PM IST

                                        Read more

                                        Basic math definitions

                                        Objective:

                                        1. Divergence of vector field defines the degree of expansion or outward flow of that vector field. It is said to be positive if vector field moves outward and negative if vector field moves inward.       2.Gradient of vector is defined as rate of change of that particular vector.    3.Curl…

                                        calendar

                                        21 Jun 2018 12:40 PM IST

                                          Read more

                                          Matlab programming

                                          Objective:

                                          1. A=[1,2,3,4,5] returns the output of a matrix A consisting of one row and 5 columns with elements 1,2,3,4,5. 2. A=[1;2;3;4;5] returns ouput of matrix B consisting of one column and 5 rows with elements 1,2,3,4,5 3.C= A*B\' returns an error because both A and B matrices are of the same size consisting of 1 row and 5 columns…

                                          calendar

                                          21 Jun 2018 10:57 AM IST

                                            Read more

                                            Matlab programming

                                            Objective:

                                            1. A=[1,2,3,4,5] returns the output of a matrix A consisting of one row and 5 columns with elements 1,2,3,4,5. 2. A=[1;2;3;4;5] returns ouput of matrix B consisting of one column and 5 rows with elements 1,2,3,4,5 3.C= A*B\' returns an error because both A and B matrices are of the same size consisting of 1 row and 5 columns…

                                            calendar

                                            21 Jun 2018 10:56 AM IST

                                              Read more

                                              FINITE ELEMNT ANALYSIS OF BEAM

                                              Objective:

                                              1A) For the bar shown in figure above F1, F2,F3 can be written as follows F1 = F1 F2 = 0 F3 = -W where -W is the weight of entire beam acting in downward direction and F1 is the force acting at node 1 which is the reaction force because the beam is supported at node 1.   B)   C)        

                                              calendar

                                              02 Apr 2018 01:33 AM IST

                                                Read more

                                                ANALYIS OF STRESS AND DEFORMATION IN A BEAM

                                                Objective:

                                                1.Problem decription: The objective of the project is to analyze the stress and deformation of a beam and validate these results using values from analytical method. Another objective of the project is  1.1.Model description The model below is modelled with the help of ANSYS design modeller. The model description…

                                                calendar

                                                03 Nov 2017 01:36 PM IST

                                                  Read more

                                                  ANALYSIS OF STRESS CONCENTRATION IN FLAT PLATE

                                                  Objective:

                                                  1.Problem ststement: The objective of the problem is to analyze the stress concentration in a flat plate with a hole in centre and determine the maximum deformation and stress developed in flat plate due to given load.   1.1.Model description: The model is modelled using ANSYS design modeller. The model is modelled…

                                                  calendar

                                                  14 Oct 2017 12:33 AM IST

                                                    Read more
                                                    Showing 1 of 27 projects