How to properly use MultibodyPlant::CalcGravityGeneralizedForces in pydrake?How to merge two dictionaries in a single expression?How do I check if a list is empty?How do I check whether a file exists without exceptions?How can I safely create a nested directory?How to get the current time in PythonHow can I make a time delay in Python?How do I sort a dictionary by value?How to make a chain of function decorators?How to make a flat list out of list of listsHow do I list all files of a directory?

Markov-chain sentence generator in Python

On the Rømer experiments and the speed of light

What is my malfunctioning AI harvesting from humans?

Submitting a new paper just after another was accepted by the same journal

Why did I get only 5 points even though I won?

How to reduce Sinas Chinam

Is this curved text blend possible in Illustrator?

Can the ground attached to neutral fool a receptacle tester?

Are differences between uniformly distributed numbers uniformly distributed?

Why isn’t SHA-3 in wider use?

Can a PC use the Levitate spell to avoid movement speed reduction from exhaustion?

How to describe accents?

A Non Math Puzzle. What is the middle number?

Solution to German Tank Problem

How does proof assistant organize knowledge?

How many people would you need to pull a whale over cobblestone streets?

Is there a SQL/english like language that lets you define formulations given some data?

Simplification of numbers

0xF1 opcode-prefix on i80286

Super Duper Vdd stiffening required on 555 timer, what is the best way?

AsyncDictionary - Can you break thread safety?

What is this 1990s horror game of otherworldly PCs dealing with monsters on modern Earth?

Safest way to store environment variable value in a file

Can sampling rate be a floating point number?



How to properly use MultibodyPlant::CalcGravityGeneralizedForces in pydrake?


How to merge two dictionaries in a single expression?How do I check if a list is empty?How do I check whether a file exists without exceptions?How can I safely create a nested directory?How to get the current time in PythonHow can I make a time delay in Python?How do I sort a dictionary by value?How to make a chain of function decorators?How to make a flat list out of list of listsHow do I list all files of a directory?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I am trying to create a simple gravity compensation controller for acrobot with the following code:



from pydrake.all import *

file_name = "acrobot.sdf" # from drake/multibody/benchmarks/acrobot/acrobot.sdf
plant = MultibodyPlant()
parser = Parser(plant=plant)
robot = parser.AddModelFromFile(file_name)
plant.AddForceElement(UniformGravityFieldElement([0.0, 0.0, -9.81]))
plant.Finalize()

nq = plant.num_positions()
nv = plant.num_velocities()
nx = nq + nv
nu = plant.num_actuators()
assert (nx, nu) == (4, 1)

plant_ctx = plant.CreateDefaultContext()

x_plant = plant.GetMutablePositionsAndVelocities(plant_ctx)
x_plant[:] = [0.1, 0.2,
0.3, 0.4]

tau_g = plant.CalcGravityGeneralizedForces(plant_ctx)

print tau_g


Unfortunately, tau_g is always zero.



It seems that the gravity vector is not applied to the robot.
How can this be fixed?



UPDATE:



Working C++ implementation:



systems::DiagramBuilder<double> builder;
MultibodyPlant<double>& plant = *builder.AddSystem<MultibodyPlant>(0.001);
Parser parser(&plant);
drake::multibody::ModelInstanceIndex robot_instance_index = parser.AddModelFromFile(full_name);
plant.AddForceElement<UniformGravityFieldElement>();
plant.Finalize();

systems::Simulator<double> simulator(plant);

// Simulator Context
VectorXd state = plant.GetPositionsAndVelocities(simulator.get_mutable_context());
state(0) = 0.5;
state(1) = 0.5;
plant.SetPositionsAndVelocities(&simulator.get_mutable_context(),state);
// prints -15.3096 -8.25483
std::cout << plant.CalcGravityGeneralizedForces(simulator.get_mutable_context()) << std::endl;

// Default Context
std::unique_ptr<Context<double>> context_ptr = plant.CreateDefaultContext();
auto context = context_ptr.get();
VectorXd state_2 = plant.GetPositionsAndVelocities(*context, robot_instance_index);
state_2(0) = 0.5;
state_2(1) = 0.5;
plant.SetPositionsAndVelocities(context, state_2);
std::cout << plant.CalcGravityGeneralizedForces(*context) << std::endl;
// prints -15.3096 -8.25483









share|improve this question
































    1















    I am trying to create a simple gravity compensation controller for acrobot with the following code:



    from pydrake.all import *

    file_name = "acrobot.sdf" # from drake/multibody/benchmarks/acrobot/acrobot.sdf
    plant = MultibodyPlant()
    parser = Parser(plant=plant)
    robot = parser.AddModelFromFile(file_name)
    plant.AddForceElement(UniformGravityFieldElement([0.0, 0.0, -9.81]))
    plant.Finalize()

    nq = plant.num_positions()
    nv = plant.num_velocities()
    nx = nq + nv
    nu = plant.num_actuators()
    assert (nx, nu) == (4, 1)

    plant_ctx = plant.CreateDefaultContext()

    x_plant = plant.GetMutablePositionsAndVelocities(plant_ctx)
    x_plant[:] = [0.1, 0.2,
    0.3, 0.4]

    tau_g = plant.CalcGravityGeneralizedForces(plant_ctx)

    print tau_g


    Unfortunately, tau_g is always zero.



    It seems that the gravity vector is not applied to the robot.
    How can this be fixed?



    UPDATE:



    Working C++ implementation:



    systems::DiagramBuilder<double> builder;
    MultibodyPlant<double>& plant = *builder.AddSystem<MultibodyPlant>(0.001);
    Parser parser(&plant);
    drake::multibody::ModelInstanceIndex robot_instance_index = parser.AddModelFromFile(full_name);
    plant.AddForceElement<UniformGravityFieldElement>();
    plant.Finalize();

    systems::Simulator<double> simulator(plant);

    // Simulator Context
    VectorXd state = plant.GetPositionsAndVelocities(simulator.get_mutable_context());
    state(0) = 0.5;
    state(1) = 0.5;
    plant.SetPositionsAndVelocities(&simulator.get_mutable_context(),state);
    // prints -15.3096 -8.25483
    std::cout << plant.CalcGravityGeneralizedForces(simulator.get_mutable_context()) << std::endl;

    // Default Context
    std::unique_ptr<Context<double>> context_ptr = plant.CreateDefaultContext();
    auto context = context_ptr.get();
    VectorXd state_2 = plant.GetPositionsAndVelocities(*context, robot_instance_index);
    state_2(0) = 0.5;
    state_2(1) = 0.5;
    plant.SetPositionsAndVelocities(context, state_2);
    std::cout << plant.CalcGravityGeneralizedForces(*context) << std::endl;
    // prints -15.3096 -8.25483









    share|improve this question




























      1












      1








      1








      I am trying to create a simple gravity compensation controller for acrobot with the following code:



      from pydrake.all import *

      file_name = "acrobot.sdf" # from drake/multibody/benchmarks/acrobot/acrobot.sdf
      plant = MultibodyPlant()
      parser = Parser(plant=plant)
      robot = parser.AddModelFromFile(file_name)
      plant.AddForceElement(UniformGravityFieldElement([0.0, 0.0, -9.81]))
      plant.Finalize()

      nq = plant.num_positions()
      nv = plant.num_velocities()
      nx = nq + nv
      nu = plant.num_actuators()
      assert (nx, nu) == (4, 1)

      plant_ctx = plant.CreateDefaultContext()

      x_plant = plant.GetMutablePositionsAndVelocities(plant_ctx)
      x_plant[:] = [0.1, 0.2,
      0.3, 0.4]

      tau_g = plant.CalcGravityGeneralizedForces(plant_ctx)

      print tau_g


      Unfortunately, tau_g is always zero.



      It seems that the gravity vector is not applied to the robot.
      How can this be fixed?



      UPDATE:



      Working C++ implementation:



      systems::DiagramBuilder<double> builder;
      MultibodyPlant<double>& plant = *builder.AddSystem<MultibodyPlant>(0.001);
      Parser parser(&plant);
      drake::multibody::ModelInstanceIndex robot_instance_index = parser.AddModelFromFile(full_name);
      plant.AddForceElement<UniformGravityFieldElement>();
      plant.Finalize();

      systems::Simulator<double> simulator(plant);

      // Simulator Context
      VectorXd state = plant.GetPositionsAndVelocities(simulator.get_mutable_context());
      state(0) = 0.5;
      state(1) = 0.5;
      plant.SetPositionsAndVelocities(&simulator.get_mutable_context(),state);
      // prints -15.3096 -8.25483
      std::cout << plant.CalcGravityGeneralizedForces(simulator.get_mutable_context()) << std::endl;

      // Default Context
      std::unique_ptr<Context<double>> context_ptr = plant.CreateDefaultContext();
      auto context = context_ptr.get();
      VectorXd state_2 = plant.GetPositionsAndVelocities(*context, robot_instance_index);
      state_2(0) = 0.5;
      state_2(1) = 0.5;
      plant.SetPositionsAndVelocities(context, state_2);
      std::cout << plant.CalcGravityGeneralizedForces(*context) << std::endl;
      // prints -15.3096 -8.25483









      share|improve this question
















      I am trying to create a simple gravity compensation controller for acrobot with the following code:



      from pydrake.all import *

      file_name = "acrobot.sdf" # from drake/multibody/benchmarks/acrobot/acrobot.sdf
      plant = MultibodyPlant()
      parser = Parser(plant=plant)
      robot = parser.AddModelFromFile(file_name)
      plant.AddForceElement(UniformGravityFieldElement([0.0, 0.0, -9.81]))
      plant.Finalize()

      nq = plant.num_positions()
      nv = plant.num_velocities()
      nx = nq + nv
      nu = plant.num_actuators()
      assert (nx, nu) == (4, 1)

      plant_ctx = plant.CreateDefaultContext()

      x_plant = plant.GetMutablePositionsAndVelocities(plant_ctx)
      x_plant[:] = [0.1, 0.2,
      0.3, 0.4]

      tau_g = plant.CalcGravityGeneralizedForces(plant_ctx)

      print tau_g


      Unfortunately, tau_g is always zero.



      It seems that the gravity vector is not applied to the robot.
      How can this be fixed?



      UPDATE:



      Working C++ implementation:



      systems::DiagramBuilder<double> builder;
      MultibodyPlant<double>& plant = *builder.AddSystem<MultibodyPlant>(0.001);
      Parser parser(&plant);
      drake::multibody::ModelInstanceIndex robot_instance_index = parser.AddModelFromFile(full_name);
      plant.AddForceElement<UniformGravityFieldElement>();
      plant.Finalize();

      systems::Simulator<double> simulator(plant);

      // Simulator Context
      VectorXd state = plant.GetPositionsAndVelocities(simulator.get_mutable_context());
      state(0) = 0.5;
      state(1) = 0.5;
      plant.SetPositionsAndVelocities(&simulator.get_mutable_context(),state);
      // prints -15.3096 -8.25483
      std::cout << plant.CalcGravityGeneralizedForces(simulator.get_mutable_context()) << std::endl;

      // Default Context
      std::unique_ptr<Context<double>> context_ptr = plant.CreateDefaultContext();
      auto context = context_ptr.get();
      VectorXd state_2 = plant.GetPositionsAndVelocities(*context, robot_instance_index);
      state_2(0) = 0.5;
      state_2(1) = 0.5;
      plant.SetPositionsAndVelocities(context, state_2);
      std::cout << plant.CalcGravityGeneralizedForces(*context) << std::endl;
      // prints -15.3096 -8.25483






      python drake






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 27 at 13:17







      asQue

















      asked Mar 27 at 9:22









      asQueasQue

      195 bronze badges




      195 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          2














          I confirm that I see the same behavior, and don't see any obvious errors in your implementation.

          I've opened https://github.com/RobotLocomotion/drake/issues/11051






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373650%2fhow-to-properly-use-multibodyplantcalcgravitygeneralizedforces-in-pydrake%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            I confirm that I see the same behavior, and don't see any obvious errors in your implementation.

            I've opened https://github.com/RobotLocomotion/drake/issues/11051






            share|improve this answer





























              2














              I confirm that I see the same behavior, and don't see any obvious errors in your implementation.

              I've opened https://github.com/RobotLocomotion/drake/issues/11051






              share|improve this answer



























                2












                2








                2







                I confirm that I see the same behavior, and don't see any obvious errors in your implementation.

                I've opened https://github.com/RobotLocomotion/drake/issues/11051






                share|improve this answer













                I confirm that I see the same behavior, and don't see any obvious errors in your implementation.

                I've opened https://github.com/RobotLocomotion/drake/issues/11051







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 at 12:15









                Russ TedrakeRuss Tedrake

                4412 silver badges5 bronze badges




                4412 silver badges5 bronze badges



















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373650%2fhow-to-properly-use-multibodyplantcalcgravitygeneralizedforces-in-pydrake%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현