Questions tagged [chaos]

Anything related to chaotic systems or chaos theory. Chaotic systems are systems that are extremely sensitive to initial conditions (e.g. round-off error in data stored digitally) thus leading to the impossibility of predicting their long-term evolution. The tag is mostly relevant to cases where algorithms show chaotic behavior.

Anything related to chaotic systems or chaos theory. Chaotic systems are systems that are extremely sensitive to initial conditions (e.g. round-off error in data stored digitally) thus leading to the impossibility of predicting their long-term evolution. The tag is mostly relevant to cases where algorithms show chaotic behavior.

See Wikipedia page on chaos theory.

102 questions
0
votes
1 answer

How to apply ODE45 solver correctly

What is the relationship between number of datapoints and the time step and integration step? How to determine the step size so that I can generate N number of points? For example, when N=1000 datapoints (length of each of the time series) what…
Sm1
  • 560
  • 2
  • 6
  • 24
0
votes
1 answer

Chaos Toolkit support for CRI-O based runtimes? for instance will it work on OpenShift Container Platform v4.3 please?

Please can someone confirm if Chaos Toolkit (https://github.com/chaostoolkit) will work on OpenShift Container Platform version 4.3 please? which is based on CRI-O runtime. As previously had tried it with Gremlin, Ops-Monkey, Pumba and Litmus but…
Vijay
  • 1
0
votes
1 answer

Latency fault injection in VertX / Spring framework applications at application level

I've checked ChaosMonkey which is only for springboot framework. Also, Pumba tool but, that looks like infrastructure level fault injection needing root system access. I'm looking for help to induce latency fault inject at application level in VertX…
Rajesh Mappu
  • 483
  • 9
  • 23
0
votes
0 answers

Trying to create the chaos game

I am trying to create the chaos game. I have an if statement that calls the diffrent chaos things and makes the points to plotg them. But i think there is something wrong with my if statement. I am at a lost for what to try... #This 'makes' the…
user12104401
0
votes
1 answer

Chaos testing of Vertx Application

Pointers on any tool for chaos testing of Vertx application deployed on Openshift. Will chaos monkey work or any other tool out there?
0
votes
1 answer

MPI parallelism in chaotic systems

I have a Fortran program for dynamics (basically a verlet algo). In order to compute the velocities faster I parallelized the algorithm with MPI. What makes me nervous is that if I have four processors, each processor runs a Verlet, and when they…
Stefano Borini
  • 138,652
  • 96
  • 297
  • 431
0
votes
0 answers

Problems with creating Poincare surface plots for the Henon-Heiles Hamiltonian using symplectic integrator

I am trying to plot the poincaré surface sections for the Henon- Heiles Hamiltonian using the symplectic integrator Ruth of 3rd order, but I am having some problems because after several steps the variables start to take huge values resulting in an…
Dean
  • 1
  • 1
0
votes
0 answers

How to draw cobweb in gnuplot

I want to make cobweb plot in c with gnuplot but the curve is not plotted well. Here are the code. #include int main(void){ int i, n=100; // Time double r=3.80; // Initial condition of maximum rate of increase double x[102]; // Increase…
CalmPenguin
  • 145
  • 7
0
votes
1 answer

chaostoolkit why do we have create new nodepool for creating chaos

I am new to ChaosToolKit, Can someone help me in understanding why do we have create new nodepool as part of creating chaos (Google Cloud Engine) ? https://docs.chaostoolkit.org/drivers/gce/#create_new_nodepool
0
votes
1 answer

Is it necessary that chaos monkey can termination only instance which deployed by spinnaker ?

Is it necessary that chaos monkey can termination only instance which deployed by spinnaker ? If we are using another cloud management platform Rightscale and GCE to deployed the machine and deployed spinnaker only for use the choas monkey to…
user1700502
  • 51
  • 1
  • 7
0
votes
1 answer

Pumba container exiting without any error

I am trying to setup Pumba on my docker swarm setup. I tried using the docker service create, docker stack deploy and a simple docker run command with following parameters: docker run -d -v /var/run/docker.sock:/var/run/docker.sock…
vhashmode
  • 221
  • 1
  • 2
  • 8
0
votes
1 answer

Using chaos game representation for gene sequences [Python program]

I need to represent many gene sequences using chaos game representation I got this python code from Boštjan Cigan's blog (https://bostjan-cigan.com/chaos-game-representation-of-gene-structure-in-python/) Author: Bostjan…
0
votes
1 answer

chen's chaotic system solution using differential transform method

I am calculating the solution of Chen's chaotic system using differential transform method. The code that I am using is: x=zeros(1,7); x(1)=-0.1; y=zeros(1,7); y(1)=0.5; z=zeros(1,7); z(1)=-0.6; for k=0:5 …
user311790
  • 192
  • 10
0
votes
1 answer

Is there a way to easily make a specific directory slow for a unit test?

My goal is to run a test against a file system which is intentionally slow, to test performance metrics in chaotic storage scenarios. In the same sense that there are ways to limit memory and cpu with cgroups in containers, i've considered wether…
jayunit100
  • 17,388
  • 22
  • 92
  • 167
0
votes
1 answer

Julia Set Python

I've trying to make a julia set in python but my output is Nan at some early process. I don't know what causes it. Just for the sake of confession: my programming classes are not good, I don't really know what I am doing, this is mostly from what…
Victor RM
  • 5
  • 1