项目作者: shoarai

项目描述 :
Washout filter generates simulator's motions to simulate vehicle's motions.
高级语言: Go
项目地址: git://github.com/shoarai/washout.git
创建时间: 2017-10-28T11:02:05Z
项目社区:https://github.com/shoarai/washout

开源协议:MIT License

下载


Washout

Washout filter generates simulator’s motions to simulate vehicle’s motions.

Structure

washoutstructure

Installation

  1. go get github.com/shoarai/washout

Usage

  1. package main
  2. import "github.com/shoarai/washout/jaxfilter"
  3. func main() {
  4. // Set the interval of processing in milliseconds.
  5. const interval = 10
  6. wash := jaxfilter.NewWashout(interval)
  7. // Pass vehicle's accelerations in meters per square second
  8. // and angular velocities in radians per second.
  9. position := wash.Filter(1, 1, 1, 3.14, 3.14, 3.14)
  10. // Position has simulator's displacements in meters and angles in radians.
  11. // type Position struct {
  12. // X, Y, Z, AngleX, AngleY, AngleZ float64
  13. // }
  14. }

Preferences

Evaluation of motion with washout algorithm for flight simulator using tripod parallel mechanism