- Видео 50
- Просмотров 234 383
Tangible engineering
США
Добавлен 14 июн 2007
When an engineer can picturize concepts and theories in his/her mind and explain them simply, theories can become powerful tools. This channel, maintained by Prof. Yalin Dong from University of Akron, works towards making basic concepts and theories tangible.
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
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
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
Spot: Road Test at the University of Akron.
Просмотров 1623 года назад
Spot: Road Test at the University of Akron.
THANKS A LOT BUDDY, YOURE MY HERO
Thank u so much
much thanks
thanks you saved my time, it worked without any issue
thx helped a lot
really saved my life
why can i not apply heat flux on the outer edge?
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;
thanks for the help :)
thank you bro clear and concise video, you are a live saver !!
thanks a lot bro
i have a problem when i select symmetry from model the details are not showing there what is its solution
Air flows around fins,no need to give 'h' to other surface.
ah, esse cara me salvou viu, thank you very much
gracias bro me salvaste
Thanks
Very nice 🎉
GitHub link?
Cool!
awesome . i want to build this for my university project.can I get project code other details please. thanks in advance☺️
try it yourself you would learn a lot
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.
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.
Great video, thank you so much
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.
Thank you very much
Thank you!
thanks a lot bro, even after one year you are still saving lifes with 0.38 sec video
Thank y
best videos
life saver
Gracias..
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!
Thanks
Thanks so much was so stuck at it
goodness gracious this program is trash. how can you allow the user to permanently hide such an important window. thanks anyways
Thanks, great video!
You are a lifesaver my friend, thank you!
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
life saver
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
Thank you
Thank you for your help!
man i love u, save my life
That's help me thanks 😄😄
Fcking nice
Thank you so much, that really helps, it worked for me.
Any know to solve modeling view problem. Help me
Hii Can you help me please? My model view not show full screen xyplane. How i solve this problem. Reply please
thank you
bro i love you, thanks s2.
Thank u
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.