Tangible engineering
Tangible engineering
  • Видео 50
  • Просмотров 234 383
Course project for Control Systems Design
The ball balance PID controller designed by Benjamin, Michael, Jared and Josh in the control systems design class 2024 fall.
PID MATLAB Arduino servomotor
Check out 3D printing parts from #electronoobs
ruclips.net/video/JFTJ2SS4xyA/видео.html
Просмотров: 2 746

Видео

Senior Design Project: Equip Boston Dynamics Spot with AI vision
Просмотров 291Год назад
Our undergraduate, Andrew Sharkey, developed computer vision ability for Boston Dynamics Spot.
Module 5.2 Algorithm Chain and Pipeline for Machine Learning
Просмотров 154Год назад
This a recorded lecture for class MECE486 machine learning for engineering at UAkron to show how to use sklearn pipeline to create an algorithm chain for machine learning.
Recover closed details and/or outline panel in ANSYS model.
Просмотров 20 тыс.Год назад
You can quickly recover them using "home manage"
Chapter 3: ANSYS 2021 model beam system(frame)
Просмотров 1,4 тыс.Год назад
In 2020 plus version, new function is added to avoid generating surface and keep lines in space claim.
Module 2.1 Python Basics (Part 3 String)
Просмотров 832 года назад
Module 2.1 Python Basics (Part 3 String)
Module 2.1 Python Basics (Part 2 if for )
Просмотров 522 года назад
This video uses coding examples to show how to use if structure and for structure in python.
Module 2.1 Python basics (part 1)
Просмотров 1072 года назад
Module 2 (2.1, 2.2, 2.3, and 3.4) prepare students with programming basics for machine Learning. In this video, you will learn python basics: (1) Input and output, (2) variables, (3) common data types, (4) math operations and math functions, (5) help and import
Module 1.2: The first Machine Learning Application: Iris Species Classification
Просмотров 2072 года назад
This video show show to quickly develop a machine learning model based on sklearn with four steps. 1. Data preparation 2. Model selection 3. Model fitting. 4. Model evaluation.
Module 1.1 Create a machine learning programming environment based on anaconda.
Просмотров 3172 года назад
This video provides a tutorial to create a machine learning programming environment using anaconda. The packages installed in anaconda include python, numpy, matplotlib, scipy, pandas, and scikit learn.Jupyter Notebook is also installed as the programming platform.
Module 2.2 Math Preparation Calculus
Просмотров 202 года назад
Use two examples to show how to use calculus (differentiation and integration) to deal with problems where variables change with time, location, or other reference variables.
Module 2.1 Hydrostatic pressure
Просмотров 702 года назад
This video explain why there is pressure in static fluid, and formulate an equation to describe fluid pressure from scratch.
Module 1.2 problem session for viscosity
Просмотров 8352 года назад
Solve a fluid problem based on: 1. shearing stress strain rate relationship 2. non-slip boundary conditions
Module 1.1 Definition of fluid and viscosity
Просмотров 552 года назад
This is a video recorded for MECE460 Fluid Dynamics 1 at department of mechanical engineering, the University of Akron. Covering basic concepts of 1. The definition of fluid 2. The shearing stress - strain rate relationship 3. Viscosity
Dimensional Analysis
Просмотров 1302 года назад
Buckingham Pi Theorem for dimensional analysis
Virtual control LAB setup for course project
Просмотров 6782 года назад
Virtual control LAB setup for course project
Linear Momentum Equation with non-uniform velocity
Просмотров 3722 года назад
Linear Momentum Equation with non-uniform velocity
Module 8: lead compensator design using MATLAB
Просмотров 13 тыс.2 года назад
Module 8: lead compensator design using MATLAB
Module 3: transfer function for multiple input and multiple output system (MIMO)
Просмотров 5 тыс.2 года назад
Module 3: transfer function for multiple input and multiple output system (MIMO)
Module 3: transfer function for single input and single output (SISO) system.
Просмотров 2,4 тыс.2 года назад
Module 3: transfer function for single input and single output (SISO) system.
Module 2: MATLAB Simulink model a two-mass mechanical system with unit impulse input
Просмотров 8 тыс.2 года назад
Module 2: MATLAB Simulink model a two-mass mechanical system with unit impulse input
Module 2: Simulink block diagram for one-mass mechanical system
Просмотров 8 тыс.2 года назад
Module 2: Simulink block diagram for one-mass mechanical system
Module 1: Solve differential equation using symbolic math toolbox
Просмотров 8592 года назад
Module 1: Solve differential equation using symbolic math toolbox
Chapter 1: Energy method for 1D spring system
Просмотров 6223 года назад
Chapter 1: Energy method for 1D spring system
Chapter 1: ANSYS with overlapped tab and small font size issue
Просмотров 23 тыс.3 года назад
Chapter 1: ANSYS with overlapped tab and small font size issue
Senior Design Project Fall 2021: Rust Prevention
Просмотров 433 года назад
Senior Design Project Fall 2021: Rust Prevention
Boston Dynamics Spot Introduction
Просмотров 1753 года назад
Boston Dynamics Spot Introduction
Spot walks through a narrow door
Просмотров 643 года назад
Spot walks through a narrow door
Spot: Road Test at the University of Akron.
Просмотров 1623 года назад
Spot: Road Test at the University of Akron.
Boston Dynamics Spot: Open Box Test
Просмотров 963 года назад
Boston Dynamics Spot: Open Box Test

Комментарии

  • @muhammadzakaria8355
    @muhammadzakaria8355 3 часа назад

    THANKS A LOT BUDDY, YOURE MY HERO

  • @kumarsaurav7457
    @kumarsaurav7457 16 часов назад

    Thank u so much

  • @Lethiery
    @Lethiery 19 часов назад

    much thanks

  • @eng.ahzash
    @eng.ahzash 7 дней назад

    thanks you saved my time, it worked without any issue

  • @XGeoCX
    @XGeoCX 12 дней назад

    thx helped a lot

  • @ataneda5842
    @ataneda5842 21 день назад

    really saved my life

  • @jerryhuang6673
    @jerryhuang6673 24 дня назад

    why can i not apply heat flux on the outer edge?

  • @stephenfrey3793
    @stephenfrey3793 25 дней назад

    Thank you for making this video. It's good to have content that demonstrates modelling concepts with simple, accessible examples. Here is the GNU Octave version of the code (it requires a little setup ...installation of control and symbolics packages and configuration with Python and Sympy... ChatGPT is your friend): m1 = 1; m2 = 1; k1 = 5; k2 = 5; b = 1; syms s U; A = [m1*s^2 + b*s + k1 + k2, -b*s - k2; -b*s - k2, m2*s^2 + b*s + k2]; B = [k1*U; 0]; x_s = A \ B; % Substitute U with 1 to simplify the expressions x_s = subs(x_s, U, 1); % Extract numerator and denominator manually [num1, den1] = numden(x_s(1)); [num2, den2] = numden(x_s(2)); % Convert symbolic expressions to numeric coefficients num1_coeffs = double(coeffs(num1, s, 'All')); den1_coeffs = double(coeffs(den1, s, 'All')); num2_coeffs = double(coeffs(num2, s, 'All')); den2_coeffs = double(coeffs(den2, s, 'All')); % Create transfer functions G1 = tf(num1_coeffs, den1_coeffs); G2 = tf(num2_coeffs, den2_coeffs); % Define the time vector and input signal t = 0:0.1:30; u = sin(t); % Simulate the system response x = lsim(G1, u, t); y = lsim(G2, u, t); % Plot the results plot(t, x); hold on; plot(t, y); hold off;

  • @aziqhibri
    @aziqhibri 27 дней назад

    thanks for the help :)

  • @laurapelaez-is1ii
    @laurapelaez-is1ii Месяц назад

    thank you bro clear and concise video, you are a live saver !!

  • @esmaeilzavvar8452
    @esmaeilzavvar8452 Месяц назад

    thanks a lot bro

  • @talhafarooq8828
    @talhafarooq8828 Месяц назад

    i have a problem when i select symmetry from model the details are not showing there what is its solution

  • @tushardoshi9777
    @tushardoshi9777 Месяц назад

    Air flows around fins,no need to give 'h' to other surface.

  • @renatojosedasilvacosta7263
    @renatojosedasilvacosta7263 Месяц назад

    ah, esse cara me salvou viu, thank you very much

  • @gari82809
    @gari82809 Месяц назад

    gracias bro me salvaste

  • @AmanDattani
    @AmanDattani Месяц назад

    Thanks

  • @hamzaelmanzari5824
    @hamzaelmanzari5824 Месяц назад

    Very nice 🎉

  • @shivendrapratapsingh5188
    @shivendrapratapsingh5188 Месяц назад

    GitHub link?

  • @sergiogcollado
    @sergiogcollado Месяц назад

    Cool!

  • @kawsarrahman986
    @kawsarrahman986 Месяц назад

    awesome . i want to build this for my university project.can I get project code other details please. thanks in advance☺️

    • @atharvabedarkar
      @atharvabedarkar Месяц назад

      try it yourself you would learn a lot

    • @3000LeftyMagician
      @3000LeftyMagician Месяц назад

      PID Balance+Ball | full explanation & tuning by Electronoobs. Look that up on youtube it has full explanation. Just did this for a uni project. The project is about tuning the PID controller so good luck the code is already provided in the description link of that vid. This video is the same project.

    • @UAkronMechanicalEngineering
      @UAkronMechanicalEngineering Месяц назад

      Check out the 3D printing parts from Electronoobs ruclips.net/video/JFTJ2SS4xyA/видео.html I agree with you. For ME control systems design, it often falls into the trap of being too theoretical. This is a great prototype for our students to explore how to write and tune PID controllers.

  • @JoseCubero-w7j
    @JoseCubero-w7j 2 месяца назад

    Great video, thank you so much

  • @codewithzeez1647
    @codewithzeez1647 2 месяца назад

    Please is there a video to solve overlapped tab?. I've 4 tabs in my Mechanical and the information display tab is below the viewport and it's supposed to be linked to it. Such that when I increase the view port, the tab below it decreases and vice versa. But now they overlap and if I expand one, it covers the other.

  • @QrK566
    @QrK566 2 месяца назад

    Thank you very much

  • @Equilibrium.Stability
    @Equilibrium.Stability 2 месяца назад

    Thank you!

  • @justkaya11
    @justkaya11 2 месяца назад

    thanks a lot bro, even after one year you are still saving lifes with 0.38 sec video

  • @rahuld2844
    @rahuld2844 2 месяца назад

    Thank y

  • @kianr2200
    @kianr2200 2 месяца назад

    best videos

  • @jimmymacdonald219
    @jimmymacdonald219 2 месяца назад

    life saver

  • @DanielRamirez-mc1qy
    @DanielRamirez-mc1qy 2 месяца назад

    Gracias..

  • @dlairramadan6850
    @dlairramadan6850 2 месяца назад

    I’m so grateful to have found this video; it’s exactly what I needed, and I can’t emphasize enough how clear and helpful it is!

  • @ВиталийФилипковский
    @ВиталийФилипковский 3 месяца назад

    Thanks

  • @charlestoneoyoo
    @charlestoneoyoo 3 месяца назад

    Thanks so much was so stuck at it

  • @philipp3877
    @philipp3877 4 месяца назад

    goodness gracious this program is trash. how can you allow the user to permanently hide such an important window. thanks anyways

  • @estebanampuero5462
    @estebanampuero5462 4 месяца назад

    Thanks, great video!

  • @ahmad97ist
    @ahmad97ist 4 месяца назад

    You are a lifesaver my friend, thank you!

  • @iraqdream2007
    @iraqdream2007 4 месяца назад

    Thank you very much, you explain in a simple clear way and get to the point directly in a professional way. Thank you for your time

  • @boraylmazmatarac3671
    @boraylmazmatarac3671 4 месяца назад

    life saver

  • @MohammedAbubakerAbdullah
    @MohammedAbubakerAbdullah 5 месяцев назад

    This message popup "An error occurred inside the FATIGUE module: Invalid or missing stress life curve." why and what is the solution? I use Ansys 2023 R1

  • @arcskyi
    @arcskyi 5 месяцев назад

    Thank you

  • @dr_vortep
    @dr_vortep 5 месяцев назад

    Thank you for your help!

  • @bebe6461
    @bebe6461 6 месяцев назад

    man i love u, save my life

  • @unofficial4346
    @unofficial4346 6 месяцев назад

    That's help me thanks 😄😄

  • @Pol-Torres-Campos
    @Pol-Torres-Campos 6 месяцев назад

    Fcking nice

  • @Safia_Tageldin
    @Safia_Tageldin 6 месяцев назад

    Thank you so much, that really helps, it worked for me.

  • @muhammadjunaid2359
    @muhammadjunaid2359 6 месяцев назад

    Any know to solve modeling view problem. Help me

  • @muhammadjunaid2359
    @muhammadjunaid2359 6 месяцев назад

    Hii Can you help me please? My model view not show full screen xyplane. How i solve this problem. Reply please

  • @pisciocaldo
    @pisciocaldo 7 месяцев назад

    thank you

  • @drey6499
    @drey6499 7 месяцев назад

    bro i love you, thanks s2.

  • @kashi_m
    @kashi_m 7 месяцев назад

    Thank u

  • @choogi_tv
    @choogi_tv 7 месяцев назад

    hello sir. i what could be the possible reason why my mesh tab is not updating. i clicked update yet its still has the question mark icon.