- 115
- 605 096
TopDogEngineer
United States
Приєднався 27 гру 2017
SolidWorks: Breaking Down Imported Parts
In this video, I demonstrate how to break down an imported part of solid bodies into an assembly of parts.
Переглядів: 30
Відео
Sizing Fillet Welds for Rectangular Tubing From Ansys Finite Element Analysis Program
Переглядів 2665 місяців тому
In this video, I demonstrate how to size fillet welds from FEA results using Omer Blodgetts' classical methods.
SOLIDWORKS TIPS AND TRICKS: CUTTING SQUARE TUBES AT DIFFERENT ANGLES
Переглядів 4895 місяців тому
In this video, I show how to cut square tubing at different angles
SolidWorks Tips and Tricks: Mouse Gestures
Переглядів 2665 місяців тому
In this video, I demonstrate how to setup mouse gestures in SolidWorks to accelerate ones work flow
Ansys: Pulling Out Reaction Loads At Contacts
Переглядів 75610 місяців тому
In this video, I show how to pull out reaction loads at contacts in Ansys
Ansys: Creating A Reference Coordinate System
Переглядів 31610 місяців тому
In this video, I show how to crate a reference coordinate system in Ansys
Ansys: Evaluating Stresses of each Component of A Multibody Assembly
Переглядів 42410 місяців тому
In this video, I show how to evaluate the stresses of individual components of an assembly using the Adjust to Visible selection
Ansys: Stress Analysis and Beam Tool
Переглядів 62610 місяців тому
In this video, I show how to get stresses off of beam elements
Ansys: Point Masses
Переглядів 1,3 тис.10 місяців тому
In this video, I show how to insert a point mass in Ansys
SpaceClaim: Projecting A Sketch and Partitioning a Shell Face
Переглядів 34610 місяців тому
In this video, I show how to project a sketch onto a shell face, then partition the face.
Ansys: Free Free Modal Analysis
Переглядів 63210 місяців тому
In this video, I demonstrate how to run a free free modal analysis prior to running a structural analysis
Ansys: Assigning MPC contact constraints between solid, shell, and beam elements
Переглядів 3,3 тис.10 місяців тому
In this video, I show how to assign MPC constraints between different surfaces
SpaceClaim: Splitting Beam Elements
Переглядів 59611 місяців тому
In this video, I show how to split beam elements in Ansys SpaceClaim
SpaceClaim: Projections
Переглядів 23611 місяців тому
In this video, I demonstrate how to create a projection of a surface on to another surface using ansys Spaceclaim
Spaceclaim: Defeaturing Solids for Analysis
Переглядів 25111 місяців тому
In this video, I demonstrate how to defeature solids for FEA Analysis
SpaceClaim: Converting Solids to Shells
Переглядів 2,1 тис.11 місяців тому
SpaceClaim: Converting Solids to Shells
SpaceClaim: Converting Solids to Beams
Переглядів 1,4 тис.11 місяців тому
SpaceClaim: Converting Solids to Beams
Gear Fatigue Analysis Using Lewis Bending Stress
Переглядів 748Рік тому
Gear Fatigue Analysis Using Lewis Bending Stress
Gear Design: Lewis Form Factor Equation Solution
Переглядів 792Рік тому
Gear Design: Lewis Form Factor Equation Solution
Column Buckling: An Excel Application
Переглядів 1,3 тис.Рік тому
Column Buckling: An Excel Application
Engineering Programming: Pressure load on a Fixed Supported Flat Plate
Переглядів 814Рік тому
Engineering Programming: Pressure load on a Fixed Supported Flat Plate
FEA Postprocessing: Vibrational Fatigue Analysis of Fasteners
Переглядів 723Рік тому
FEA Postprocessing: Vibrational Fatigue Analysis of Fasteners
FEA Postprocessing: Joint Slip and Separation
Переглядів 649Рік тому
FEA Postprocessing: Joint Slip and Separation
Density of A Real Gas: An Excel Application
Переглядів 5842 роки тому
Density of A Real Gas: An Excel Application
Abaqus: Shock Analysis Applied Example
Переглядів 7 тис.2 роки тому
Abaqus: Shock Analysis Applied Example
Shock Response Spectrum: A Python Application
Переглядів 6 тис.2 роки тому
Shock Response Spectrum: A Python Application
Determining Material Allowables with Python: Normal Distribution
Переглядів 1,5 тис.2 роки тому
Determining Material Allowables with Python: Normal Distribution
Python for Mechanical Engineers: Fundamental Mode of a Trapezoidal Plate
Переглядів 6002 роки тому
Python for Mechanical Engineers: Fundamental Mode of a Trapezoidal Plate
Interp2d: How to do two dimensional interpolation using SciPy in python
Переглядів 16 тис.2 роки тому
Interp2d: How to do two dimensional interpolation using SciPy in python
Hi sir! Can you share your vba file with me?
In the failure model, why do we cube the Shear ratio and square the tension ratio?
Can you please show How to programming Miles'Equation in Excell or share it Excell file please? Thanks
Hi there! I made the following code based on what @topdogengineer8440 shared here in the video. You have to figure out yourself how to create a VBA project but if I did it you definitely will too. Don't know how youtube will format the code, so you'll (probably) have to make it more readable by yourself as well. (It would be great if @topdogengineer8440 could check whether the code is correct; however my results seem to be the same) 'Module 1 Function Interpolation_data_loglog(x, x_values As Range, y_values As Range) 'Turns range into an array Dim x_values_arr() As Variant Dim y_values_arr() As Variant x_values_arr = x_values.Value y_values_arr = y_values.Value 'Check to see if ratio is out of bounds Select Case x Case Is > x_values_arr(UBound(x_values_arr), 1) ans = "X value out of range (too high)" Case Is < x_values_arr(LBound(x_values_arr), 1) Interpolation_data_loglog = "X value out of range (too low)" Case Else 'loops to find what two values x falls between For I = LBound(x_values_arr) To UBound(x_values_arr) lower = x_values_arr(I, 1) upper = x_values_arr(I + 1, 1) If x >= x_values_arr(I, 1) And x <= x_values_arr(I + 1, 1) Then 'interpolate to find value ans = Interpolation_LogLog(x, x_values_arr(I, 1), x_values(I + 1, 1), y_values_arr(I, 1), y_values(I + 1, 1)) 'returns y value Interpolation_data_loglog = ans Exit For End If Next I End Select End Function 'Interpolation function for straight line loglog plots Private Function Interpolation_LogLog(xg, x1, x2, y1, y2) m = WorksheetFunction.Log(y1 / y2) / WorksheetFunction.Log(x1 / x2) b = y1 / (x1 ^ m) Interpolation_LogLog = b * (xg ^ m) End Function 'Module 2 Function Miles_Acc(PSD, fn, Q) 'PSD: PSD value in g^2/HZ 'fn: natural frequency 'Q: Quality factor Miles_Acc = Sqr(WorksheetFunction.Pi() / 2 * PSD * fn * Q) End Function
Thank you is the spreadsheet available for sale?
Thank you for this informational video that I in fact needed for my statics final.
Amazing explanation 😊 and so easy to understand thank you!
Hey! I have been trying to learn it for 1 years, it took an hour to learn but at least i dont feel dumb anymore! Thanks mate from Sydney Australia
Nice work! Can you "spit ball" the EUR for an average 10,000 ft lateral oil well in the Permian basin? I know all the variables, but that's what averages are all about!
Great video even tho as a Hyperworks user, I believe a lot of these steps are unnecessary
Hi, Thanks for this nice explanation. Are these excel sheets sharable?
can you share the link to the e book
Thank you for the explanation...
How to programming Miles' Equation in Excell?
glad I found your channel!
great video, thanks!
Thank you for your video, can we get our hands on the excel spreadsheet?
NO
Can u explain how weld calculations are done using the extracted results here. Thanks
Thanks for such valuable knowledge shared
Thanks a bunch!
thank you for your video.
My base data has 0 values and thus Lnx gave me errors. working with a filter I can get this to give me a 0, but when I do my check it does not work out. What the fix?
really like to see your codes.
How do I know the name of HistoryRegion?
Thank-you. Very helpful and detailed video.
Thank you for your video. This channel is a hidden treasure.🎉
Nice, kinda in need of some solidworks tutorial especially of AutoCAD if possible
Please do more structural engineering related videos like fasteners, grms
Is there any way that i buy your calculation sheet? If then, send me message please
Good Night, Greetings from Venezuela. Is it possible for you to send this excel file for educational use? Gracias🎮
Hi My friend Nicely done! How could I get a copy of your excel file?
excelente planilha....uma pena que voçê nao usa o sistema internacional "SI".....voçê usa polegada.....fica complicado pra maioria ...dificulta tudo
do you have any idea how to make a tapered beam element in spaceclaim or ansys workbench? not solid, but rather beam or frame elements.
never seen such a shit
Thank you very much, that is excellent. I am curious to know how does these date comes out in the first place, as I noticed there are different sets of values from different sources.
Thank you for your video. I am working on bi-axial fatigue. The Mohr's circle is useful to get the 2D stress state and the component.
❤❤❤❤thanks
BEST EXPLANTION OF ALL! Thank you. I watched many other videos before yours but this one truly is the best explained
is not x = ln(1/(1-p))/B , like en.wikipedia.org/wiki/Exponential_distribution ?
this Method will no longer work becasue scipy is deprecating some of the codes. There are replacements. So look it up. thanks for the video.
Hi Brandon, it looks like the template link is broken, could you share the new one? thank you. Looking forward for your answer. The video was great, anyway!
What a great tutorial. I wasn't able to access the code. Have you removed this from your site. Thanks for the video.
Thanks sir india
Great Video! Do you have an equivalent python script that uses the Newmark Method? Been trying for ages to get it to work but to no avail.
A couple of suggestions. 1) You should calculate a pin margin for the shear-bending interaction. This would be MS = 1/sqrt(Rb^2+Rs^2)-1. 2) Also suggest that plastic bending be used for the pin, such as the Cozzone method. 3) For the interaction, note that the max bending and max shear stresses do not occur at the same location so using the max-max stress is too conservative. 4) You are assuming that you know what M is, based on the assumption of t/2+g. Both sides of the shear plane should be looked at simultaneously, with M as an input on each side. Calculate the pin slope at the shear plane for each side and goal seek on M until the slopes are equal. Very nice presentation though and you pointed out a tiny but significant error in my own analysis. So, thank you.
Hi @TopDogEngineer, thank you for a great video! It seems like the link to the VBA template is broken. Would you mind sharing it again?
Hi dear do you have spread sheet with metric unit
Very interesting
How can I unsuppress the beam tool in static structural analysis in ANSYS R23?
Thank you very much for your instruction! I am doing a line body representing bolt in Ansys. Your video is very helpful.
Hello, good afternoon, how are you? I hope you're well! Can you explain to me step by step how to arrive at the safety margin expression, please? I would be very grateful! If I can return the favor, tell me how. I await your response, thank you and continued success!