opensim-org / opensim-gui

SimTK OpenSim graphical user interface and distribution.
Apache License 2.0
64 stars 33 forks source link

Model fails to load: bouncing_block.osim #68

Closed tkuchida closed 7 years ago

tkuchida commented 7 years ago

Platform: Win 7 Pro 64-bit Version: opensimWin64Alpha01.zip OPENSIM_HOME environment variable: Points to 3.3 directory

Error message err1

"Messages" window

Updating Model file from 20303 to latest format...
Visualizer couldn't read c:\Users\tkuchida\GitHub - GUI 4.0 alpha01\opensim\Geometry\big_block_centered.vtp because:
SimTK Exception thrown at PolygonalMesh.cpp:411:
  Error detected by Simbody method PolygonalMesh::loadVtpFile(): Attempt to load a VTK PolyData (.vtp) file from file name 'c:\Users\tkuchida\GitHub - GUI 4.0 alpha01\opensim\Geometry\big_block_centered.vtp' failed with message:
  SimTK Exception thrown at PolygonalMesh.cpp:340:
  Error detected by Simbody method PolygonalMesh::loadVtpFile(): Only format="ascii" is supported for .vtp file DataArray elements, got format="appended" for Points DataArray.
  (Required condition 'pointData.getRequiredAttributeValue("format") == "ascii"' was not met.)

  (Required condition '!"failed"' was not met.)

Visualizer couldn't read c:\Users\tkuchida\GitHub - GUI 4.0 alpha01\opensim\Geometry\linkage1.vtp because:
SimTK Exception thrown at PolygonalMesh.cpp:411:
  Error detected by Simbody method PolygonalMesh::loadVtpFile(): Attempt to load a VTK PolyData (.vtp) file from file name 'c:\Users\tkuchida\GitHub - GUI 4.0 alpha01\opensim\Geometry\linkage1.vtp' failed with message:
  SimTK Exception thrown at PolygonalMesh.cpp:340:
  Error detected by Simbody method PolygonalMesh::loadVtpFile(): Only format="ascii" is supported for .vtp file DataArray elements, got format="appended" for Points DataArray.
  (Required condition 'pointData.getRequiredAttributeValue("format") == "ascii"' was not met.)

  (Required condition '!"failed"' was not met.)

Visualizer couldn't read c:\Users\tkuchida\GitHub - GUI 4.0 alpha01\opensim\Geometry\linkage1.vtp because:
SimTK Exception thrown at PolygonalMesh.cpp:411:
  Error detected by Simbody method PolygonalMesh::loadVtpFile(): Attempt to load a VTK PolyData (.vtp) file from file name 'c:\Users\tkuchida\GitHub - GUI 4.0 alpha01\opensim\Geometry\linkage1.vtp' failed with message:
  SimTK Exception thrown at PolygonalMesh.cpp:340:
  Error detected by Simbody method PolygonalMesh::loadVtpFile(): Only format="ascii" is supported for .vtp file DataArray elements, got format="appended" for Points DataArray.
  (Required condition 'pointData.getRequiredAttributeValue("format") == "ascii"' was not met.)

  (Required condition '!"failed"' was not met.)

Loaded model toy_with_forces from file C:\Users\tkuchida\GitHub - GUI 4.0 alpha01\opensim\models\BouncingBlock\bouncing_block.osim
aymanhab commented 7 years ago

Check if it opens on master, if yes then likely this has been fixed in core, will test after upgrading if not then open an issue for opensim-core. Thanks @tkuchida

tkuchida commented 7 years ago

The following works on master:

auto Model = model("bouncing_block.osim");
model.finalizeFromProperties(); //throws exception if this line is omitted
model.printSubcomponentInfo();
aymanhab commented 7 years ago

The GUI workflow invokes initSystem (which implicitly calls finalizeFromProperties), the change to require the new call finalizeFromProperties was not in the alpha code base, so I'd expect the issue to go away with upgrading API. Would be great though to try opening other models from the GUI-alpha distribution using master so that any necessary fixes are incorporated into the API core beta. Thanks much @tkuchida for investigating 🥇

tkuchida commented 7 years ago

All models in opensimWin64Alpha01\opensim\models\*.osim /s load successfully in the API on master.

Test code

auto model = Model(filename);
model.finalizeFromProperties();
model.printSubcomponentInfo();

Model files tested Arm26/arm26.osim BouncingBlock/bouncing_block.osim BouncingBlock/bouncing_block_weak_spring.osim DynamicWalker/WalkerModel.osim DynamicWalker/WalkerModelAddCustomFeet.osim DynamicWalker/WalkerModelTerrain.osim DynamicWalker/WalkerModelTerrainAddCustomFeet.osim Gait10dof18musc/gait10dof18musc.osim Gait10dof18musc/subject01.osim Gait10dof18musc/subject01_metabolics.osim Gait10dof18musc/subject01_metabolics_path_actuator.osim Gait10dof18musc/subject01_metabolics_path_spring.osim Gait10dof18musc/subject01_metabolics_spring.osim Gait2354_Simbody/gait2354_simbody.osim Gait2354_Simbody/gait2354_with_pat_lig.osim Gait2354_Simbody/subject01_simbody.osim Gait2354_Simbody_Patellae/gait2354_simbody_patellae.osim Gait2392_Simbody/gait2392.osim Gait2392_Simbody/gait2392_simbody.osim Gait2392_Simbody/subject01.osim Gait2392_Simbody/subject01_adjusted.osim Gait2392_Simbody/subject01_simbody_adjusted.osim Jumper/DynamicJumperModel.osim Leg6Dof9Musc/leg6dof9musc.osim Pendulum/double_pendulum.osim SoccerKick/SoccerKickingModel.osim ToyLanding/ToyLandingModel.osim ToyLanding/ToyLandingModel_activeAFO.osim ToyLanding/ToyLandingModel_AFO.osim Tug_of_War/Tug_of_War.osim Tug_of_War/Tug_of_War_Millard.osim

aymanhab commented 7 years ago

Awesome, excellent job @tkuchida 👍

jenhicks commented 7 years ago

Moved to "needs verifying" list for testing in the next GUI build

aymanhab commented 7 years ago

Trying to load the model now gives the error dialog capture68 This obviously is the latest API Beta since Sockets mentioned in message didn't exist in previous versions model in opensim-models/Models/BouncingBlock/bouncing_block.osim

jenhicks commented 7 years ago

@aseth1

tkuchida commented 7 years ago

Still unable to open bouncing_block.osim with opensim_devWin64_060217.zip (same dialog box as @aymanhab noted on Apr 3 post, above).

tkuchida commented 7 years ago

Tested again using opensim_win64_070517_2.zip on Windows 7. Error message is identical to what Ayman posted above (Apr 3). Contents of Messages window:

ModelVisualizer ignoring 'Unassigned'; only .vtp .stl and .obj files currently supported.
ModelVisualizer ignoring 'Unassigned'; only .vtp .stl and .obj files currently supported.
ModelVisualizer ignoring 'Unassigned'; only .vtp .stl and .obj files currently supported.
ModelVisualizer ignoring 'Unassigned'; only .vtp .stl and .obj files currently supported.
ModelVisualizer ignoring 'Unassigned'; only .vtp .stl and .obj files currently supported.
ModelVisualizer ignoring 'Unassigned'; only .vtp .stl and .obj files currently supported.
ModelVisualizer ignoring 'Unassigned'; only .vtp .stl and .obj files currently supported.
Updating Model file from 20303 to latest format...
Loaded model toy_with_forces from file C:\Users\tkuchida\GitHub - GUI 4.0 alpha04\opensim\Models\BouncingBlock\bouncing_block.osim
aymanhab commented 7 years ago

This obviously isn't a GUI issue until corresponding API issue is resolved

jenhicks commented 7 years ago

Issue moved to opensim-org/opensim-core #1856 via ZenHub