Question about using AnyReacForce

Hello everyone.
I want to set reactionforce between human thorax and backrest(like a
chair) and I also want to set only x direction reaction force

so. I wrote a script as follows.

AnyReacForce backreaction =
{
AnyKinLinear back={
AnySeg &ref1 =
Main.Model.HumanModel.Trunk.SegmentsThorax.ThoraxSeg;
AnyRefNode &ref2 =
Main.Model.EnvironmentModel.frame.Mainframe.op;
};
MeasureOrganizer = {0};
};

but it occured error [‘MeasureOrganizer’ : Unresolved object]
I can’t solve this problem.
Please give me some advice~

Best Regards

Taewoo

Hello everyone.
> I am doing a project recently. And I want to know how to use the
class
> “AnyKinEqInterPolDriver” to drive the Prismatic joint with data
>
> wishing every one a good day.
> waiting your reply everytime.
> alec
> 4 Oct 2007
>

Hi Taewoo

Welcome to the group

The problem with the script is that you have not specified a
AnyKinMeasureOrg object…

Please have look at these lines which should correct the problem.

As you can see i have introduces the line AnyKinMeasureorg which is
a measureorganizer that will allow you to pick certain dof from a
measure. In the drivers this object is not needed they have the
measureorganizer “build” in because they are based on the
MeasureOrganizer class, but this is not the case with the reac
force, maybee this is the reason for the misunderstanding.

 AnyReacForce backreaction =   {

   AnyKinMeasureOrg linx ={
     AnyKinLinear back={
       AnySeg &ref1 =
       Main.Model.HumanModel.Trunk.SegmentsThorax.ThoraxSeg;
       AnyRefNode &ref2 =
       Main.Model.EnvironmentModel.frame.Mainframe.op;
     };
     MeasureOrganizer = {0};
   };
 };

Please ask again if you have further questions.

Best regards
Søren, AnyBody Support

— In anyscript@yahoogroups.com, “woote77” <woote77@…> wrote:
>
> Hello everyone.
> I want to set reactionforce between human thorax and backrest(like
a
> chair) and I also want to set only x direction reaction force
>
> so. I wrote a script as follows.
>
> AnyReacForce backreaction =
> {
> AnyKinLinear back={
> AnySeg &ref1 =
> Main.Model.HumanModel.Trunk.SegmentsThorax.ThoraxSeg;
> AnyRefNode &ref2 =
> Main.Model.EnvironmentModel.frame.Mainframe.op;
> };
> MeasureOrganizer = {0};
> };
>
> but it occured error [‘MeasureOrganizer’ : Unresolved object]
> I can’t solve this problem.
> Please give me some advice~
>
>
> Best Regards
>
> Taewoo
>
>
>
>
> Hello everyone.
> > I am doing a project recently. And I want to know how to use the
> class
> > “AnyKinEqInterPolDriver” to drive the Prismatic joint with data
> >
> > wishing every one a good day.
> > waiting your reply everytime.
> > alec
> > 4 Oct 2007
> >
>