e250ff0d5a
- Added new `cable` composite type: * The `initial` parameter specifies the joint at the starting boundary: `free`, `ball`, or `none`. * The boundary bodies are exposed with the names:`B_left` and `B_right`. * The vertex initial positions can be specified directly in the XML with the parameter `vertex`. * The orientation of the body frame **is** the orientation of the material frame of the curve. - Added new `cable` passive force plugin: * Twist and bending stiffness can be set separately with the parameters `twist` and `bend`. * The stress-free configuration can be set to be the initial one or flat with the flag `flat`. * New cable example showing the formation of plectoneme. * New coil example. * New belt example showing interaction between twist and anisotropy. * Added test using cantilever exact solution. PiperOrigin-RevId: 480033694 Change-Id: I491271bce8fccb185961477e903e5a72d172c8a3
90 lines
3.4 KiB
C
90 lines
3.4 KiB
C
// Copyright 2022 DeepMind Technologies Limited
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef MUJOCO_INCLUDE_MJPLUGIN_H_
|
|
#define MUJOCO_INCLUDE_MJPLUGIN_H_
|
|
|
|
#include <mujoco/mjdata.h>
|
|
#include <mujoco/mjmodel.h>
|
|
|
|
typedef enum mjtPluginTypeBit_ {
|
|
mjPLUGIN_ACTUATOR = 1<<0,
|
|
mjPLUGIN_SENSOR = 1<<1,
|
|
mjPLUGIN_PASSIVE = 1<<2,
|
|
} mjtPluginTypeBit;
|
|
|
|
struct mjpPlugin_ {
|
|
const char* name; // globally unique name identifying the plugin
|
|
|
|
int nattribute; // number of configuration attributes
|
|
const char* const* attributes; // name of configuration attributes
|
|
|
|
int type; // bitfield of mjtPluginTypeBits specifying the plugin type
|
|
int needstage; // an mjtStage enum value specifying the sensor computation stage
|
|
|
|
// number of mjtNums needed to store the state of a plugin instance (required)
|
|
int (*nstate)(const mjModel* m, int instance);
|
|
|
|
// dimension of the specified sensor's output (required only for sensor plugins)
|
|
int (*nsensordata)(const mjModel* m, int instance, int sensor_id);
|
|
|
|
// called when a new mjData is being created (required), returns 0 on success or -1 on failure
|
|
int (*init)(const mjModel* m, mjData* d, int instance);
|
|
|
|
// called when an mjData is being freed (optional)
|
|
void (*destroy)(mjData* d, int instance);
|
|
|
|
// called when an mjData is being copied (optional)
|
|
void (*copy)(mjData* dest, const mjModel* m, const mjData* src, int instance);
|
|
|
|
// called when an mjData is being reset (required)
|
|
void (*reset)(const mjModel* m, mjData* d, int instance);
|
|
|
|
// called when the plugin needs to update its outputs (required)
|
|
void (*compute)(const mjModel* m, mjData* d, int instance, int type);
|
|
|
|
// called when time integration occurs (optional)
|
|
void (*advance)(const mjModel* m, mjData* d, int instance);
|
|
};
|
|
typedef struct mjpPlugin_ mjpPlugin;
|
|
|
|
#if defined(__has_attribute)
|
|
|
|
#if __has_attribute(constructor)
|
|
#define mjPLUGIN_DYNAMIC_LIBRARY_INIT \
|
|
__attribute__((constructor)) static void _mjplugin_init(void)
|
|
#endif
|
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#ifndef mjDLLMAIN
|
|
#define mjDLLMAIN DllMain
|
|
#endif
|
|
|
|
// NOLINTBEGIN(runtime/int)
|
|
#define mjPLUGIN_DYNAMIC_LIBRARY_INIT \
|
|
static void _mjplugin_dllmain(void); \
|
|
static int __stdcall mjDLLMAIN(void* hinst, unsigned long reason, void* reserved) { \
|
|
if (reason == 1) { \
|
|
_mjplugin_dllmain(); \
|
|
} \
|
|
return 1; \
|
|
} \
|
|
static void _mjplugin_dllmain(void)
|
|
// NOLINTEND(runtime/int)
|
|
|
|
#endif // defined(_MSC_VER)
|
|
|
|
#endif // MUJOCO_INCLUDE_MJPLUGIN_H_
|