Uber eVTOL CRM OpenVSP Models

655 views
Skip to first unread message

Felix Finger

unread,
Mar 9, 2018, 5:05:39 AM3/9/18
to OpenVSP
Hello Rob,

at AHS Mark Moore presented Uber's common reference models for eVTOL aircraft. Obviously the models were designed using OpenVSP.

His slides are available here: https://vtol.org/download.cfm?downloadfile=773A49A0-053E-11E8-899B005056BF91B4&typename=dmFile&fieldname=filename
Relevant are slides 7, 8, and 14.

Unfortunatly, this is all the data I could find on this topic. Do you know how to get access to the reference models and data? Will the models be made available in the Hangar or do I have to contact Uber directly?

I'm currently doing my PhD on the topic of sizing methods for electric and hybrid-electric CTOL and VTOL aircraft (first results will be published at the Aviation Forum and EATS this year), and I'd really test my methodology with these two models.

Thank you and best regards,
Felix Finger

Felix Finger

unread,
May 8, 2018, 4:42:08 PM5/8/18
to OpenVSP
If anyone else is looking for the models: They were published today on the Uber website, just in time for the Elevate Summit:
https://www.uber.com/info/elevate/ecrm/

I think it's great to see how the developers build their own models. Great to see them published.

Regards,
Felix

roxelane rahel

unread,
Apr 17, 2019, 10:06:37 AM4/17/19
to OpenVSP
Hi,

I struggle to convert this format .vsp3 to any useful 3D format. Did anyone solve the problem? I can handle almost all formats.

Many thanks, appreciated.

Roxy

Rob McDonald

unread,
Apr 17, 2019, 5:10:39 PM4/17/19
to ope...@googlegroups.com
What can you use?  It is trivial to convert to STEP, IGES, STL, and many others. 

Rob

--
You received this message because you are subscribed to the Google Groups "OpenVSP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openvsp+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Roxy Rahel

unread,
Apr 17, 2019, 6:21:42 PM4/17/19
to ope...@googlegroups.com
Hi Rob,

Thanks for your reply! 
I got any option, .Obj, .stl, dxf, dwg, iges - any of these work. I tried the converter openvsp, but it shows error loading the files. Do you have any solution or help?

Many thanks, 

Roxy 

Rob McDonald

unread,
Apr 18, 2019, 1:41:21 AM4/18/19
to ope...@googlegroups.com
1. Download open vsp from the web site. 
2. Unzip the file. 
3. Double click 'vsp' to run. 
4. Use file... open... dialog to open your file. 
5. Use file... export...  IGES... dialog to export. 

Rob

vsp_user

unread,
Apr 18, 2019, 12:53:40 PM4/18/19
to OpenVSP
Hello Rob,

Following-up on this discussion, is there some way to export the 3D model in OpenVSP into a format where it can be displayed on a web browser; so that somebody who has access to that page can perform actions such as zoom, rotate etc. in 3D.

Thank you.


On Thursday, April 18, 2019 at 1:41:21 AM UTC-4, Rob McDonald wrote:
1. Download open vsp from the web site. 
2. Unzip the file. 
3. Double click 'vsp' to run. 
4. Use file... open... dialog to open your file. 
5. Use file... export...  IGES... dialog to export. 

Rob



On Thu, Apr 18, 2019, 7:21 AM Roxy Rahel <roxela...@gmail.com> wrote:
Hi Rob,

Thanks for your reply! 
I got any option, .Obj, .stl, dxf, dwg, iges - any of these work. I tried the converter openvsp, but it shows error loading the files. Do you have any solution or help?

Many thanks, 

Roxy 

On Wed, 17 Apr 2019, 22:10 Rob McDonald, <rob.a....@gmail.com> wrote:
What can you use?  It is trivial to convert to STEP, IGES, STL, and many others. 

Rob

On Wed, Apr 17, 2019, 11:06 PM roxelane rahel <roxela...@gmail.com> wrote:
Hi,

I struggle to convert this format .vsp3 to any useful 3D format. Did anyone solve the problem? I can handle almost all formats.

Many thanks, appreciated.

Roxy

Am Dienstag, 8. Mai 2018 21:42:08 UTC+1 schrieb Felix Finger:
If anyone else is looking for the models: They were published today on the Uber website, just in time for the Elevate Summit:
https://www.uber.com/info/elevate/ecrm/

I think it's great to see how the developers build their own models. Great to see them published.

Regards,
Felix

--
You received this message because you are subscribed to the Google Groups "OpenVSP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ope...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "OpenVSP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ope...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "OpenVSP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ope...@googlegroups.com.

Rob McDonald

unread,
Apr 18, 2019, 11:44:37 PM4/18/19
to OpenVSP
We do this for the Hangar.

Use the X3D export.  Then, check out X3DOM to integrate that content into your website.

Rob

vsp_user

unread,
Apr 23, 2019, 5:16:32 PM4/23/19
to OpenVSP
Hi Rob,

Perfect. That worked pretty well. I was able to integrate that into the browser using X3DOM. Is there some way to export the openVSP geometry in the '.x3d' format from python using SUAVE without using the GUI?

Thank you

Rob McDonald

unread,
Apr 23, 2019, 5:38:29 PM4/23/19
to ope...@googlegroups.com
The script that runs on the OpenVSP Hangar looks something like this (in vspscript -- translating to Python should be easy enough).

void main()
{
    // Get if there is any geoms
    array<string> @geoms = FindGeoms();

    if (geoms.length() <= 0)
    {
        VSPExit(1);
    }

    // Get VSP File Name
    string fname = GetVSPFileName();

    // Remove extension and add ".x3d" to the file name
    int found = fname.findLast(".");
    string base_name = fname.substr(0,found);
    string x3d_name = base_name + ".x3d";
    Print("x3d Name = ", false);
    Print(x3d_name, true);

    // Export X3D file
    ExportFile(x3d_name, SET_ALL, EXPORT_X3D );
}

Rob

To unsubscribe from this group and stop receiving emails from it, send an email to openvsp+u...@googlegroups.com.

vsp_user

unread,
Apr 23, 2019, 6:15:27 PM4/23/19
to OpenVSP
Perfect. That worked. Thank you, Rob.

Best,
Joseph
Reply all
Reply to author
Forward
0 new messages