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

Subramania Siva

Skills Acquired at Skill-Lync :

  • MATLAB-BASICS
  • PYTHON-BASICS
  • NUMERICAL-ANALYSIS
  • CFD-BASICS
  • SOLIDWORKS-FLOW-SIMULATION-BASICS

Introduction

Hi, I am subramania siva undergraduated in Mechanical Engineering in Sri Manakula Vinayagar Engineering College, Puducherry. I am 2019 passed out batch. Now, I am looking forward for interesting and challenging job opportunity. Thank you!

17 Projects

Parsing NASA Thermodynamic Data

Objective:

AIM: To 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. To Calculate the molecular weight of each species and to display it in the command window. To Plot the Cp, Enthalpy and Entropy for the local temperature range specific…

calendar

08 Jan 2019 11:10 AM IST

    Read more

    Flow Simulation over a Cylinder using SolidWorks

    Objective:

    AIM: For this challenge, you will simulate flow over a cylinder at different reynolds number. OBJECTIVE: Calculate the baseline case Reynolds number.  Re = rho*U_inlet*D/mu D = cylinder diameter mu = dynamic viscosity rho = density Run a baseline simulation and then calculate the Reynolds number. Then increase…

    calendar

    28 May 2019 05:41 AM IST

      Read more

      Rankine cycle Simulator

      Objective:

      AIM:  Create a Rankine Cycle Simulator using MATLAB. Your code should calculate the state points of the Rankine Cycle (any type of your choice) based on user inputs.  Then, plot the corresponding T-s and h-s plots for the given set of inputs. Title and axes labels are a must, while legends could be used if necessary.…

      calendar

      17 Jan 2019 08:16 AM IST

      • MATLAB
      Read more

      Curve Fitting

      Objective:

      AIM: Write a MatLab code to fit a linear and cubic polynomial for the given Cp data and Plot the linear and cubic fit curves along with the raw data points.    SOLUTION: What is Curve Fitting ? Curve fitting is the process of constructing a curve, or mathematical functions, which possess the closest…

      calendar

      31 Dec 2018 01:56 AM IST

        Read more

        Pipe Flow Simulation using SolidWorks

        Objective:

        AIM:  Run a pipe flow simulation with an inlet Reynolds number of 100,1000 and 10,000. For each of these cases do the following 1. Place line probes at 95%, 90% and 85% of the pipe length. 2. Compare the normalized velocity profile at each of these locations 3. Normalize the velocity profile by the inlet velocity.…

        calendar

        25 May 2019 02:54 AM IST

          Read more

          Breaking Ice with Air cushion Vehicle - Find minimum pressure with Newton-Raphson method using Python

          Objective:

          AIM: In determining the minimum cushion pressure needed to break a given thickness of iceusing an air cushion vehicle, Muller (“Ice Breaking with an Air Cushion Vehicle”) inMathematical Modeling: Classroom Notes in Applied Mathematics, SIAM 1987) derivedthe equation            …

          calendar

          26 Feb 2019 03:42 AM IST

            Read more

            Genetic Algorithm

            Objective:

            AIM: Write a code in MATLAB to optimise the stalagmite function and find the global maxima of the function. SOLUTION: Genetic Alogorithm: Genetic algorithm is the way of developing the different random solutions at first and takes the random samples as the parents for the new genration and develops…

            calendar

            03 Jan 2019 11:13 PM IST

            Read more

            Constraint Minimization using Lagrange Multipliers

            Objective:

            AIM: For this problem, you will minimize a simple non-linear function by using Lagrange Multipliers. Minimize the following function, 5-(x-2)^2 -2(y-1)^2  subject to the following constraint x + 4y = 3.  SOLUTION: What is Lagrange Multipliers?       In mathematical optimization,…

            calendar

            06 Mar 2019 02:46 AM IST

              Read more

              Otto cycle - PV diagram visualizer

              Objective:

              AIM: write a MatLab code that can solve an otto cycle and make pv diagram. SOLUTION: Coding: %Given %Engine geometric parameters bore=0.1; stroke=0.1; connecting_rod_length=0.15; cr=12; %Compression ratio %Given state variables p1=101325; t1=500; t3=2300; gamma=1.4; %Find v1,v2,v3,v4 and p1,p2,p3,p4 and draw PV diagram…

              calendar

              22 Dec 2018 07:32 AM IST

                Read more

                Solving second order ODEs - Simple Pendulum

                Objective:

                AIM: Write a MatLab program to simulate the transient behaviour of a simple                                 pendulum and to create an animation of it\'s motion. SOLUTION: Coding: Main program %Given values b=0.05; %damping coefficient…

                calendar

                22 Dec 2018 07:32 AM IST

                  Read more

                  Data analysis using Python

                  Objective:

                  AIM: For this challenge, you will be create a data visualizer tool. Your task is to write a script that does the following. Data visualizer: Your script should take column numbers as the input and plot the respective columns as separate images Each file should be saved by the name of the column The plot labels…

                  calendar

                  09 Mar 2019 06:09 AM IST

                    Read more

                    Otto Cycle - PV Diagram Visualizer using Python

                    Objective:

                    AIM: write a python code that can solve an otto cycle and create a PV diagram and output the thermal efficiency of the engine. SOLUTION: Coding: """ Otto Cycle """ import math import matplotlib.pyplot as plt #engine kinematics def engine_kinematics(bore,stroke,con_rod,cr,start_a,end_a): #geometric parameters…

                    calendar

                    17 Feb 2019 09:27 AM IST

                      Read more

                      Curve Fitting using Python

                      Objective:

                      AIM: Write a python code to fit a linear and cubic polynomial for the given Cp data. SOLUTION: Coding: """ Linear and Cubic Polynomial curve fit for the cp data """ import numpy as np import matplotlib.pyplot as plt from scipy.optimize import curve_fit # Linear polynomial curve fit def fun1(t1, a1, b1): return a1*t1…

                      calendar

                      02 Mar 2019 12:39 AM IST

                        Read more

                        2R Robotic Arm Simulator in Python

                        Objective:

                        AIM: Write a program in python to simulate the forward kinematics of a 2R Robotic Arm and create a animation file of the plots. SOLUTION: Coding: # Simulation of 2R robotic arm import math import matplotlib.pyplot as plt # total number of theta tot_theta=10 # starting and ending of theta theta_start=0 theta_end=math.pi/2…

                        calendar

                        08 Feb 2019 03:03 AM IST

                          Read more

                          Python program to calculate drag force against a cyclist

                          Objective:

                          AIM: Write a Python program to calculate drag force against a cyclist. Write a program to plot Velocity vs Drag force(25 points) and Write a program to plot Drag Co-efficient vs Drag force(25 points). SOLUTION:  Coding:  Velocity vs Drag force """ Calculation of drag force against a cyclist """ import matplotlib.pyplot…

                          calendar

                          07 Feb 2019 02:31 AM IST

                            Read more

                            Simulation of forward kinematics of a 2R Robotic Arm

                            Objective:

                            AIM: Write a program in Matlab to simulate the forward kinematics of a 2R Robotic Arm SOLUTION: Coding: %Initial Values length1=1; length2=0.5; %Assigning theta values theta1=linspace(0,90,10); theta2=linspace(0,90,10); %Calculating count=1; for i=1:length(theta1) o1=theta1(i); for j=1:length(theta2) o2=theta2(j);…

                            calendar

                            22 Dec 2018 07:32 AM IST

                              Read more

                              Flow Simulation over an Airfoil using SolidWorks

                              Objective:

                              AIM: You will be running simulations on NACA air foils. OBJECTIVE:  Model the flow over a NACA0017 airfoil For the angle of attacks 0,2,4,6,8,10 compare the lift and drag forces SOLUTION: Angle of Attacks:           In aerodynamics, angle of attack specifies the angle between the…

                              calendar

                              31 May 2019 07:12 AM IST

                                Read more
                                Showing 1 of 17 projects

                                2 Course Certificates

                                certificate

                                Python for Mechanical Engineers

                                CertificateIcon
                                Certificate UID: 106936HejeA1fcRB
                                View Certificate
                                certificate

                                MATLAB for Mechanical Engineers

                                CertificateIcon
                                Certificate UID: JHOgXEr65m05i0uG
                                View Certificate
                                Showing 1 of 2 certificates

                                Schedule a counselling session

                                Please enter your name
                                Please enter a valid email
                                Please enter a valid number

                                Here are the courses that I have enrolled

                                coursecard
                                4.7

                                5 Hours of Content

                                coursecard
                                4.7

                                4 Hours of Content

                                Similar Profiles

                                Apoorv Ranjan
                                Apoorv Ranjan

                                Ladder of success cannot be climbed with hands in pocket.

                                Pruthvi Jagadeesh GK
                                Pruthvi Jagadeesh GK

                                The Future in Motion

                                Krantiveer .
                                Krantiveer .

                                Give more than what you get you will get more than what you gave