User Tools

Site Tools


visual3d:documentation:pipeline:expressions:assigned_force_functions

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
visual3d:documentation:pipeline:expressions:assigned_force_functions [2024/06/26 20:24] – created sgrangervisual3d:documentation:pipeline:expressions:assigned_force_functions [2024/09/11 17:22] (current) – Cleaned up formatting. wikisysop
Line 1: Line 1:
-====== Assigned_Force_Functions ======+====== Assigned Force Functions ====== 
 + 
 +The model-based items [[Visual3D:Documentation:Pipeline:Model_Based_Data_Commands:GRF_DATA|GRF_DATA]] and [[Visual3D:Documentation:Pipeline:Model_Based_Data_Commands:COP_Path|COP Path]] are signals stored at the [[visual3d:documentation:c3d_signal_types:target_data_type|POINT data rate]]. This is because these signals have the option to be resolved into a Segment Coordinate System and all Segment Coordinate Systems (except the default LAB) are at the POINT rate. There are times, however, when it would be useful to get the Force, CofP, and FreeMoment signals for a given[[Visual3D:Documentation:Kinematics_and_Kinetics:External_Forces:Force_Assignment|force assignment]] at the [[visual3d:documentation:c3d_signal_types:analog_data_type|ANALOG sample rate]].
  
-The model based items [[Visual3D:Documentation:Pipeline:Model_Based_Data_Commands:GRF_DATA|GRF_DATA]] and [[Visual3D:Documentation:Pipeline:Model_Based_Data_Commands:COP_Path|COP Path]] are signals stored at the Motion Capture rate. 
-This is because these signals have the option to be resolved into a Segment Coordinate System and all Segment Coordinate Systems (except the default LAB) are at the motion capture rate. 
-There are times, however, when it would be useful to get the Force, CofP, and FreeMoment for the [[Visual3D:Documentation:Kinematics_and_Kinetics:External_Forces:Force_Assignment|force assignment]] at the analog sample rate. 
 ==== Forces ==== ==== Forces ====
  
-**FORCE**(segment)+Syntax: **FORCE**(segment)
  
-Select the force assigned to the Left Foot segment ([[Visual3D:Documentation:Modeling:Segments:Segment_Default_Names|default segment name LFT]]).+Example: Select the force assigned to the Left Foot segment (whose [[Visual3D:Documentation:Modeling:Segments:Segment_Default_Names|default segment name]] is LFT).
  
-**Evaluate_Expression**+<code> 
 +Evaluate_Expression
 /EXPRESSION=FORCE("LFT") /EXPRESSION=FORCE("LFT")
 /RESULT_NAME=SCOTT /RESULT_NAME=SCOTT
 ! /RESULT_TYPE=DERIVED ! /RESULT_TYPE=DERIVED
 ! /RESULT_FOLDER=PROCESSED ! /RESULT_FOLDER=PROCESSED
-**;** +
-\\ +</code>
  
 ==== Center of Pressure ==== ==== Center of Pressure ====
  
-**COFP**(segment)+Syntax: **COFP**(segment)
  
-Select the center of pressure assigned to the Left Foot segment ([[Visual3D:Documentation:Modeling:Segments:Segment_Default_Names|default segment name LFT]]).+Example: Select the center of pressure assigned to the Left Foot segment (whose [[Visual3D:Documentation:Modeling:Segments:Segment_Default_Names|default segment name]] is LFT).
  
-**Evaluate_Expression**+<code> 
 +Evaluate_Expression
 /EXPRESSION=COFP("LFT") /EXPRESSION=COFP("LFT")
 /RESULT_NAME=SCOTT /RESULT_NAME=SCOTT
 ! /RESULT_TYPE=DERIVED ! /RESULT_TYPE=DERIVED
 ! /RESULT_FOLDER=PROCESSED ! /RESULT_FOLDER=PROCESSED
-**;**+; 
 +</code> 
 ==== Free Moment ==== ==== Free Moment ====
  
-**FREEMOMENT**(segment)+Syntax: **FREEMOMENT**(segment)
  
-Select the Free Moment assigned to the Left Foot segment ([[Visual3D:Documentation:Modeling:Segments:Segment_Default_Names|default segment name LFT]]).+Example: Select the Free Moment assigned to the Left Foot segment (whose [[Visual3D:Documentation:Modeling:Segments:Segment_Default_Names|default segment name]] is LFT).
  
-**Evaluate_Expression**+<code> 
 +Evaluate_Expression
 /EXPRESSION=FREEMOMENT("LFT") /EXPRESSION=FREEMOMENT("LFT")
 /RESULT_NAME=SCOTT /RESULT_NAME=SCOTT
 ! /RESULT_TYPE=DERIVED ! /RESULT_TYPE=DERIVED
 ! /RESULT_FOLDER=PROCESSED ! /RESULT_FOLDER=PROCESSED
-**;** +
-\\ +</code>
  
 ==== Error Messages ==== ==== Error Messages ====
  
-**Error Messages**+There are several possible error messages related to the Assigned Forces expressions.
  
-There are several possible error messages related to the Assigned Forces Function. +=== Segment Name must be Quoted === 
- +<code> 
-**Evaluate_Expression**+Evaluate_Expression
 /EXPRESSION=FORCE(JUNK) /EXPRESSION=FORCE(JUNK)
 /RESULT_TYPE=DERIVED /RESULT_TYPE=DERIVED
 /RESULT_FOLDER=PROCESSED /RESULT_FOLDER=PROCESSED
 /RESULT_NAME=TEST /RESULT_NAME=TEST
-**;** +
-**WARNING! No Segment Name was specified. Did you forget the quotes?**+ 
 +WARNING! No Segment Name was specified. Did you forget the quotes? 
 +</code> 
 In order to ensure that a string containing the segment name is recognized quotes must be used. In order to ensure that a string containing the segment name is recognized quotes must be used.
-**Evaluate_Expression**+ 
 +=== Segment Not in Link Model === 
 +<code> 
 +Evaluate_Expression
 /EXPRESSION=COFP("JUNK") /EXPRESSION=COFP("JUNK")
 /RESULT_TYPE=DERIVED /RESULT_TYPE=DERIVED
 /RESULT_FOLDER=PROCESSED /RESULT_FOLDER=PROCESSED
 /RESULT_NAME=TEST /RESULT_NAME=TEST
-**;** +
-**INFO! Segment Junk was not found** + 
-The segment was not part of the Link Model +INFO! Segment Junk was not found 
-**Evaluate_Expression**+</code> 
 + 
 +The segment must be a part of the Link Model in order to be findable. 
 + 
 +=== Use Default Segment Names === 
 +<code> 
 +Evaluate_Expression
 /EXPRESSION=COFP("Right Foot") /EXPRESSION=COFP("Right Foot")
 /RESULT_TYPE=DERIVED /RESULT_TYPE=DERIVED
 /RESULT_FOLDER=PROCESSED /RESULT_FOLDER=PROCESSED
 /RESULT_NAME=TEST /RESULT_NAME=TEST
-**;** +
-**WARNING! Evaluate_Expression requires default segment names. For Right Foot use RFT** + 
-Visual3D has a set of [[Visual3D:Documentation:Modeling:Segments:Segment_Default_Names|default segment names]] that must be used in expressions, so that the +WARNING! Evaluate_Expression requires default segment names. For Right Foot use RFT 
-expressions can be shared between users that have different config files. +</code> 
-**Evaluate_Expression**+ 
 +Visual3D has a set of [[Visual3D:Documentation:Modeling:Segments:Segment_Default_Names|default segment names]] that must be used in expressions, so that the expressions can be shared between users that have different config files. 
 + 
 +=== Can't Use Kinematic Only Segments === 
 +<code> 
 +Evaluate_Expression
 /EXPRESSION=COFP("Right Fore Foot") /EXPRESSION=COFP("Right Fore Foot")
 /RESULT_TYPE=DERIVED /RESULT_TYPE=DERIVED
 /RESULT_FOLDER=PROCESSED /RESULT_FOLDER=PROCESSED
 /RESULT_NAME=TEST /RESULT_NAME=TEST
-**;** +
-**INFO! Segment Right Fore Foot is Kinematic Only, so there is no Force Assignment possible.** + 
-Only Kinetic segments can be assigned a force.+INFO! Segment Right Fore Foot is Kinematic Only, so there is no Force Assignment possible. 
 +</code> 
 + 
 +Only kinetic segments can be assigned a force.
  
  
visual3d/documentation/pipeline/expressions/assigned_force_functions.1719433496.txt.gz · Last modified: 2024/06/26 20:24 by sgranger