defining particular output

Hi,
I encountered to define my desire outputs!!!
how can I define a particular output in script?for instance,I tried to
define ForceonForcePlate1.Fout like this:
AnyOutputFile OutFile1 = {
FileName = “out1.csv”;
AnyForce ForceL= Model.Environment.ForceOnForcePlate1.Fout;
};
and many combination of them.but I could not!
and in tutorial is not a special part to how to define output.

Jalal.Arabneydi
Best regards

Hi Jalal

The output value you want(Model.Environment.ForceOnForcePlate1.Fout)
is a vector. So when you define the output you must use an AnyVector
instead of AnyForce.
Just modify the script this way:

AnyOutputFile OutFile1 = {
FileName = “out1.csv”;
AnyVector ForceL= Model.Environment.ForceOnForcePlate1.Fout;
};

Best regards
Sylvain, AnyBody Support

— In anyscript@yahoogroups.com, j.arabneydi@… wrote:
>
> Hi,
> I encountered to define my desire outputs!!!
> how can I define a particular output in script?for instance,I
tried to
> define ForceonForcePlate1.Fout like this:
> AnyOutputFile OutFile1 = {
> FileName = “out1.csv”;
> AnyForce ForceL= Model.Environment.ForceOnForcePlate1.Fout;
> };
> and many combination of them.but I could not!
> and in tutorial is not a special part to how to define output.
>
> Jalal.Arabneydi
> Best regards
>