Questions tagged [system-identification]

Questions about "system identification" in the sense of control theory.

Questions about "system identification" in the sense of control theory. I.e. how to calibrate a model for the behaviour of a dynamic system.

See also https://en.wikipedia.org/wiki/System_identification

For questions on how to uniquely identify a client system, e.g. based on hardware serial numbers, the hardware-id tag shall be used.

50 questions
0
votes
0 answers

Responce From Estimated SysID Modell in Simulink isn't the same as shown in matlab compare() function

I'm tring to model a system with System Identification Toolbox in Matlab based on input-output data of a system. My problem is that despite finding a process model with good fit, also seen in compare() function with Validation data, there is no good…
Iaroslav
  • 1
  • 2
0
votes
0 answers

System Identification and time-series estimation for non-sampled discrete-time signals

Im dealing with with identifying model dynamics for human movement mistakes from each attemp(trial) to the next, so my time-series data is discrete in nature unlike most sampled-data, also depending on the variable an input of such nature might…
0
votes
0 answers

Python Particle Filter: Time Series in NFOURSID Input Error

Documentation: https://nfoursid.readthedocs.io/en/latest/ #housekeeping #_________________________________________________________________________ import numpy as np import matplotlib.pyplot as plt import pandas as pd from nfoursid.kalman import…
0
votes
0 answers

Applying a non linear ARX model in matlab

I estimated parameters of a non- linear arx model with the system identification toolbox in matlab. I was wondering how I can use these results as a function or maybe directly on other inputs. So basically I want to call my arx model function and…
Fibaro
  • 11
  • 2
0
votes
0 answers

Question about MATLAB System Identification

I want to ask something about System Identification in MATLAB. When I used System Identification by changing poles and zeros number by myself, I feel like it's so time-consuming work. When I put in the poles and zeros number in System…
0
votes
1 answer

Why might DecomposeLumpedParameters return unsimplified expressions?

I am trying to perform system identification on an object attached to a KUKA iiwa using Drake in Python. My goal is to do lumped parameter estimation using least squares, which involves decomposing the multibody equations using…
0
votes
0 answers

Problem with Matlab Greybox Identification Toolbox

Dear stackoverflow community I have been struggeling with the following problem. I have got this code to estimate Parameters with provided Matlab functions for Greybox Modeling. Matlab doesnt give me a step response for my given idnlgrey element.…
Benjamin
  • 1
  • 1
0
votes
1 answer

How do I take gradients of MultibodyPlant computations w.r.t. mass, center-of-mass, inertia, etc.?

I see the current chapter of Underactuated: System Identification and the corresponding notebook, and it currently does it through symbolics. I'd like to try out stuff like system identification using forward-mode automatic differentiation…
Eric Cousineau
  • 1,944
  • 14
  • 23
0
votes
1 answer

System identification in Matlab Simulink

I am using a pulse sensor the input data to matlab is step function and the output of my system is the pulse so when I were using system identification toolbox i inserted the input and output of the system then I pressed import, it said you have…
Hala
  • 121
  • 8
0
votes
0 answers

Problem plotting plant transfer function in Simulink

I'm trying to plot a plant transfer function in Simulink. For the case I'm looking at, there is a downward step in the temperature from 40 to 30 degrees Celsius. Initially, I was able to identify some suitable plant models using both the System…
0
votes
2 answers

Pyomo: DAE parameter estimation and stepwise simulation of model

I started with Pyomo and have some specific questions about the package. I'm working with DAE-Toolbox and want to use this toolbox for simulation and parameter estimation. Here my code: DAE-Model-script(from pyomo-examples): from pyomo.environ…
0
votes
1 answer

Least Square Parameter Estimation with Matlab

I tried to find a value of a parameter of the system namely(a1 and a2) using Least Square with my own models. My Model is MISO system: % tz(k) = a1*(((1/2*t)*(to*to(k-1)))- (1/2*t)*(tz*tz(k-1))) + a2*(((1/2*t)*(tn*tn(k-1)))-…
0
votes
1 answer

SISO system identification

I have a datasheet (around 100 samples) where for a real SISO system (DC motor), I know the input and output. With tfest command, I can form first order to nth order transfer function using the same data (loaded with iddata function) for the…
0
votes
1 answer

Synchronizing "SensorEvent.timestamp" with "System.nanoTime()" or "SystemClock.elapsedRealtimeNanos()"

The problem: I need to synchronize some data set time-stamped using System.nanoTime() with another one time-stamped using SensorEvent.timestamp. Description: I am working on System Identification of a quadcopter. Data acquisition is done using…
0
votes
1 answer

How can I extract from ssest matlab function the residues of a state space (e(t))?

A state-space model of a system with input vector u, output vector y, and disturbance e takes the following form in continuous time: d (x(t)) / dt = Ax(t)+Ke(t) y(t) = Cx(t)+e(t) In the MATLAB function ssest I am able to extract the A,C and the K…
tTimoteof
  • 1
  • 2