[MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post here information about your own engineering projects, including but not limited to building your own car or designing a virtual car through CAD.
User avatar
CAEdevice
45
Joined: 09 Jan 2014, 15:33
Location: Erba, Italy
Contact:

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

MaccaRacing wrote:
29 Jun 2020, 17:44
Seems like CAEdevice has the diffuser strakes detached by the main diffuser... Am I wrong?
Oops, you are right

MaccaRacing
0
Joined: 08 May 2020, 21:22

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

CAEdevice wrote:
29 Jun 2020, 18:28
MaccaRacing wrote:
29 Jun 2020, 17:44
Seems like CAEdevice has the diffuser strakes detached by the main diffuser... Am I wrong?
Oops, you are right
You made it on purpose or by error...? 🤔🤔🤔

User avatar
CAEdevice
45
Joined: 09 Jan 2014, 15:33
Location: Erba, Italy
Contact:

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

MaccaRacing wrote:
29 Jun 2020, 18:29
CAEdevice wrote:
29 Jun 2020, 18:28
MaccaRacing wrote:
29 Jun 2020, 17:44
Seems like CAEdevice has the diffuser strakes detached by the main diffuser... Am I wrong?
Oops, you are right
You made it on purpose or by error...? 🤔🤔🤔
It is absolutely my mistake

User avatar
machin
162
Joined: 25 Nov 2008, 14:45

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

MaccaRacing wrote:
29 Jun 2020, 17:44
Seems like CAEdevice has the diffuser strakes detached by the main diffuser... Am I wrong?
....Well spotted.... :shock:
COMPETITION CAR ENGINEERING -Home of VIRTUAL STOPWATCH

User avatar
Koldskaal
24
Joined: 14 May 2019, 10:02
Location: Denmark

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

I recently rediscovered the Honda R&D 2009 technical review in a folder on my desktop. They use what is called quiver plots in matlab terminology. I dont know what else to call them, as both vector plot and vector field seem like bad names to me. I think these could be at least as powerful as LIC, so I tried recreating one in paraview:
Image
It is a lot easier to read the rotational direction of the vorticies, which could make it easier to understand how they interact.
The geometry outline is just a slice of all the patches. The quiver plot itself is made by extracting the internal mesh applying a calculator to remove the x component of the velocity (not strictly necessary ). Then slicing using 3d glyphs as representation, orienting after the result of the calculator (direction mode), and scaling by 0.02.
It's pretty good but not perfect. Do any of you know of a way to get uniform spacing in paraview?
Maybe this would be easier to implement in mflow than LIC? :wink:
MVRC - Koldskaal, name: Christian

Thomas2019
3
Joined: 16 Aug 2019, 13:38

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

Koldskaal wrote:
01 Jul 2020, 15:29
Do any of you know of a way to get uniform spacing in paraview?
Uniform mesh. :lol:

What I have done in the past iirc is to generate a plane source with the subdivisions I want for the vectors and interpolate the U field onto that plane.
Quite cumbersome.

Thomas

MaccaRacing
0
Joined: 08 May 2020, 21:22

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

Hi guys! any news about race results?

User avatar
LVDH
44
Joined: 31 Mar 2015, 14:23

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

Koldskaal wrote:
01 Jul 2020, 15:29
I recently rediscovered the Honda R&D 2009 technical review in a folder on my desktop. They use what is called quiver plots in matlab terminology. I dont know what else to call them, as both vector plot and vector field seem like bad names to me. I think these could be at least as powerful as LIC, so I tried recreating one in paraview:
https://i.imgur.com/xnVAfmV.png
It is a lot easier to read the rotational direction of the vorticies, which could make it easier to understand how they interact.
The geometry outline is just a slice of all the patches. The quiver plot itself is made by extracting the internal mesh applying a calculator to remove the x component of the velocity (not strictly necessary ). Then slicing using 3d glyphs as representation, orienting after the result of the calculator (direction mode), and scaling by 0.02.
It's pretty good but not perfect. Do any of you know of a way to get uniform spacing in paraview?
Maybe this would be easier to implement in mflow than LIC? :wink:
This is the workaround I have been investigating.
BTW: The uniform distribution is not exactly hidden in Paraview. It is called "Uniform Spacial Distribution". On my installation it is even the default choice.

MaccaRacing wrote:
04 Jul 2020, 13:23
Hi guys! any news about race results?
I just came back from a very much needed vacation and am checking the results but it looks very much like you will have to enjoy the real F1 race tomorrow and wait for the MVRC results until next Sunday. I am very sorry.

Thomas2019
3
Joined: 16 Aug 2019, 13:38

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

LVDH wrote:
04 Jul 2020, 15:08
This is the workaround I have been investigating.
BTW: The uniform distribution is not exactly hidden in Paraview. It is called "Uniform Spacial Distribution". On my installation it is even the default choice.
Sure, but it is still random and driven by the seed value, afaik.

Here is the "Every nth point" with value 10. Not good for locally refined meshes, as it puts too many vectors near the walls.
Image

Here is the Paraview "Uniform Spatial" with some Seed number. Still a random distribution. Unless there is a trick I have not learned yet, its not really what I want.
Image

Here is the plane - workaround. Independent of the mesh refinement.
Image

I will post the work around in the next post.

Thomas

Thomas2019
3
Joined: 16 Aug 2019, 13:38

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

Here the Paraview pipeline for generating the uniformly distributed vectors.
Load your foam file.

Goto Sources > Plane
and generate a plane of the desired dimensions and locations. 2m x 2m at the (0 0 0) point in this case.
Use "X Resolution" and "Y Resolution" to control the number of vectors to be plotted later. Using the same number here makes sense.
Image

Now we map the results onto this plane.
Filters > Resample with Dataset
In the dialog pop up, select "Input" and click on your foam data.
Then select "Source" and click on the Plane.
Then click "Ok".
Image

This will result in this:
Image

You can now for example apply the calculator as Koldskaal mentioned to get rid of the U_x component in the U vector. Note formula, how "iHat" is multiplied with "0". This is purely done to make the vectors more "visible" in a y-z section, otherwise their length would be entirely ruled by the dominating x-component.
Image

Create your "Glyph" filter on the Calculator, using the "Result" vector as an input and choose "All Points" for masking.
Image

Play around with the X and Y Resolution on the Plane to quickly get a good looking plot.

Thomas

Qupax
0
Joined: 22 Mar 2020, 03:04

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

Hey everyone,

I am a high-school student (Junior, 11th grade) who just found out about this part of the forum. I am very interested in most likely going into Aerospace or Mechanical Engineering. I have always been interested in aerodynamics and would like to get involved with this. I have experience with Inventor (plus learning AutoCAD but I know that won't apply here), and I am eager to learn more as I probably don't have enough Inventor experience yet. Would anyone be willing to point me in the right direction on where to get started? I assume I missed the cutoff for this season but let me know. Also, is Inventor the preferred software or should I be using something else?

Thank you again!

User avatar
machin
162
Joined: 25 Nov 2008, 14:45

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

Cool! I guess you’ve seen the official website?

https://mantiumchallenge.com/

First thing I would do is download the given MVRC model parts / legality volumes and have a read through the rules... here’s the link to the parts;

https://mantiumchallenge.com/mvrc-files/

Inventor is a good CAD program in my opinion, but I use FreeCAD... (just because it’s free!)

Also probably worth downloading my car so you can see what parts you need to make... I’ll post a link when I find it...

Download CCE 2019 Round 5 here

(The wings on it are really bad by the way!)
Last edited by machin on 07 Jul 2020, 11:54, edited 1 time in total.
COMPETITION CAR ENGINEERING -Home of VIRTUAL STOPWATCH

User avatar
Koldskaal
24
Joined: 14 May 2019, 10:02
Location: Denmark

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

Qupax wrote:
07 Jul 2020, 00:46
...I assume I missed the cutoff for this season but let me know. Also, is Inventor the preferred software or should I be using something else?
It isn't too late! There where a few teams that joined mid season last year, so its no big deal. In fact the next deadline is more than 6 weeks away, so that should give plenty of time to get a submission ready.

Inventor should work just fine, many of us use programs of that caliber.
MVRC - Koldskaal, name: Christian

Qupax
0
Joined: 22 Mar 2020, 03:04

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

machin wrote:
07 Jul 2020, 08:59
Cool! I guess you’ve seen the official website?

https://mantiumchallenge.com/

First thing I would do is download the given MVRC model parts / legality volumes and have a read through the rules... here’s the link to the parts;

https://mantiumchallenge.com/mvrc-files/

Inventor is a good CAD program in my opinion, but I use FreeCAD... (just because it’s free!)

Also probably worth downloading my car so you can see what parts you need to make... I’ll post a link when I find it...

Download CCE 2019 Round 5 here

(The wings on it are really bad by the way!)
Alright, sounds good. I've been reading your INTRODUCTION TO RACECAR AERODYNAMICS as a starter lesson. Reason I am using Inventor is I get it for free through my school! I am excited to dive in and hopefully get a submission by the next race.
Koldskaal wrote:
07 Jul 2020, 09:24
Qupax wrote:
07 Jul 2020, 00:46
...I assume I missed the cutoff for this season but let me know. Also, is Inventor the preferred software or should I be using something else?
It isn't too late! There where a few teams that joined mid season last year, so its no big deal. In fact the next deadline is more than 6 weeks away, so that should give plenty of time to get a submission ready.

Inventor should work just fine, many of us use programs of that caliber.
Perfect! 6 weeks is a long time away and that really gives me enough time to hopefully throw something together.

User avatar
machin
162
Joined: 25 Nov 2008, 14:45

Re: [MVRC] Mantium Virtual Racecar Challenge 2020 (Grand Prix Cars)

Post

OK, so after a week's delay we are nearly ready for round 2...

The race will be live at 13:00 CEST tomorrow on the following link:



Good luck to all competitors!
COMPETITION CAR ENGINEERING -Home of VIRTUAL STOPWATCH

Post Reply