Solved! Go to Solution.
Solved! Go to Solution.
Solved by S_May. Go to Solution.
Solved by S_May. Go to Solution.
Solved by mflayler. Go to Solution.
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
I'm sorry to bring back up a thread thats 7 years old but I'm trying to do exactly this and I just don't have enough autodesk knowledge to suss out his step by step directions and I'm hoping someone can break it down a bit more for me, I've been searching for this exact animation type for months and stumbled upon this and trying to duplicate it is proving harder than I thought
I'm sorry to bring back up a thread thats 7 years old but I'm trying to do exactly this and I just don't have enough autodesk knowledge to suss out his step by step directions and I'm hoping someone can break it down a bit more for me, I've been searching for this exact animation type for months and stumbled upon this and trying to duplicate it is proving harder than I thought
Dear Mark
Could you please email me the tutorial to lis_wang@hotmail.com? I want to learn how to do that.
Thanks
Dear Mark
Could you please email me the tutorial to lis_wang@hotmail.com? I want to learn how to do that.
Thanks
Alright, so I figured out how to do it. I don't have a video tutorial of how to do it yet (thanks to me working on proprietary stuff), but I'll go through how I animated flow starting and going through a pipe, ending with the pipe empty. All this in a bit more detail than Mark_Flayer, who made all those lovely videos that tease that it can be done, but offered inadequate public explanation on how it's done. FYI, this is in Inventor 2015, but base functionality should be similar.
The video guy’s explanation had wonderful detail on his flavor of modeling, but not enough detail on what to do in order to get an assembly’s parts to actually have animated parameters. To remedy that, I spelled it out in detail below. As a summary: Make a reference component for the “flow volume” part. Inside the part, use parameters to define “flow”. Make sure said parameters have the “Export” box checked in the “Manage Parameters” menu. In the assembly, in Studio, add the parameters to “animation favorites”. Animate the parameters in conjunction with fades, much like you would for any animation feature. If you have any questions, let me know!
How I did it, in detail:
.
Alright, so I figured out how to do it. I don't have a video tutorial of how to do it yet (thanks to me working on proprietary stuff), but I'll go through how I animated flow starting and going through a pipe, ending with the pipe empty. All this in a bit more detail than Mark_Flayer, who made all those lovely videos that tease that it can be done, but offered inadequate public explanation on how it's done. FYI, this is in Inventor 2015, but base functionality should be similar.
The video guy’s explanation had wonderful detail on his flavor of modeling, but not enough detail on what to do in order to get an assembly’s parts to actually have animated parameters. To remedy that, I spelled it out in detail below. As a summary: Make a reference component for the “flow volume” part. Inside the part, use parameters to define “flow”. Make sure said parameters have the “Export” box checked in the “Manage Parameters” menu. In the assembly, in Studio, add the parameters to “animation favorites”. Animate the parameters in conjunction with fades, much like you would for any animation feature. If you have any questions, let me know!
How I did it, in detail:
.
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Mark Flayler - Engagement Engineer
IMAGINiT Manufacturing Solutions Blog: https://resources.imaginit.com/manufacturing-solutions-blog
Thank you very much. It is so detail.
Thank you very much. It is so detail.
Hey after 9 whole years, is there any other way to do this fluid animation or should I try the way you have mentioned.
BTW, using Inventor 2019
Thanks in advance.
Hey after 9 whole years, is there any other way to do this fluid animation or should I try the way you have mentioned.
BTW, using Inventor 2019
Thanks in advance.
'Get the current offset between center of mass and pivot point in horizontal plane 'and assign that value to the relevant parameter. CoGX = iProperties.CenterOfGravity.x 'Pass the offset value to excel (divide by 1000 to give meters) GoExcel.CellValue("3rd Party:Embedding 1", "Sheet1", "C2") = CoGX / 1000 'Get the current volume of the metal and assign it to the AluVol parameter. AluVol = iProperties.Volume/1000 '(in cm^3) 'Create variable to hold the density of the current material materialDensity = ThisDoc.Document.ComponentDefinition.Material.Density '(g/cm^3) 'Calculate the mass of the metal in kg AluMass = (AluVol * materialDensity)/1000 ' (in kg) 'Pass the mass to Excel GoExcel.CellValue("3rd Party:Embedding 1", "Sheet1", "A2") = AluMass 'The following lines have been commented out. They were included as a crude form 'of data-logging so that the movement of the center-of-mass could be graphed in Excel. 'GoExcel.CellValue("3rd Party:Embedding 1", "Sheet1", "E" & Index) = TipAngle 'GoExcel.CellValue("3rd Party:Embedding 1", "Sheet1", "F" & Index) = AluMass 'Index = Index + 1 'Update the document immediately to see changes as a smooth animation. InventorVb.DocumentUpdate()
'Get the current offset between center of mass and pivot point in horizontal plane 'and assign that value to the relevant parameter. CoGX = iProperties.CenterOfGravity.x 'Pass the offset value to excel (divide by 1000 to give meters) GoExcel.CellValue("3rd Party:Embedding 1", "Sheet1", "C2") = CoGX / 1000 'Get the current volume of the metal and assign it to the AluVol parameter. AluVol = iProperties.Volume/1000 '(in cm^3) 'Create variable to hold the density of the current material materialDensity = ThisDoc.Document.ComponentDefinition.Material.Density '(g/cm^3) 'Calculate the mass of the metal in kg AluMass = (AluVol * materialDensity)/1000 ' (in kg) 'Pass the mass to Excel GoExcel.CellValue("3rd Party:Embedding 1", "Sheet1", "A2") = AluMass 'The following lines have been commented out. They were included as a crude form 'of data-logging so that the movement of the center-of-mass could be graphed in Excel. 'GoExcel.CellValue("3rd Party:Embedding 1", "Sheet1", "E" & Index) = TipAngle 'GoExcel.CellValue("3rd Party:Embedding 1", "Sheet1", "F" & Index) = AluMass 'Index = Index + 1 'Update the document immediately to see changes as a smooth animation. InventorVb.DocumentUpdate()
Thanks, a lot mate really appreciate the quick reply. But what I meant was I have created an assembly including heat exchanger and some pipings I wanted to show like one line to show cold water going in and coming out hot and another line hot water going in and coming out cold.
Thanks, a lot mate really appreciate the quick reply. But what I meant was I have created an assembly including heat exchanger and some pipings I wanted to show like one line to show cold water going in and coming out hot and another line hot water going in and coming out cold.
Inventor Professional 2023 user here. Long time modeler, first time animator. Customer request to show the flow of liquids/gas through the piping/tubing of a unit. Is there any new options available to show flow through T&P or are we still stuck with using the parameters and defining the paths as described in this thread? Picture attached of the unit that I want to show flow. Since I am mainly trying to show the flow in the tubing of this particular design, will I be able to use the sketches that the pipe sweep makes for tubing to define my flow path? If no new options, would you guys mind sending me a tutorial? @mflayler @Anonymous @Anonymous
Inventor Professional 2023 user here. Long time modeler, first time animator. Customer request to show the flow of liquids/gas through the piping/tubing of a unit. Is there any new options available to show flow through T&P or are we still stuck with using the parameters and defining the paths as described in this thread? Picture attached of the unit that I want to show flow. Since I am mainly trying to show the flow in the tubing of this particular design, will I be able to use the sketches that the pipe sweep makes for tubing to define my flow path? If no new options, would you guys mind sending me a tutorial? @mflayler @Anonymous @Anonymous
Can't find what you're looking for? Ask the community or share your knowledge.