granular-based simulation and related systems
Project description
pasir
granular-based simulation and related systems
install
pip install pasir
datasets
binary and plot2
from pasir.datasets.clasdata import binary
from pasir.datasets.dataviz import plot2
r1 = [0, 1.05, 0.05]
r2 = [0, 1.05, 0.05]
coeffs = [[0.41], [-1, -1], [1, 0, 1]]
x, y, z = binary(coeffs, r1=r1, r2=r2)
plot2(x, y, z)
With
$$\tag{1} f(z) = \left{ \begin{array}{lcr} 1, & z > 0, \newline 0, & z \le 0, \end{array} \right. $$
and
$$\tag{2} z = (x - 0.5)^2 + (y - 0.5)^2 - 0.3^2, $$
which is the decision boundary.
motion examples
parabolic motion
from pasir.butiran.color2 import Color2
from pasir.butiran.math.vect3 import Vect3
from pasir.butiran.grain import Grain
from pasir.butiran.force.gravitational import Gravitational
# define grain with initial position and velocity
grain = Grain(id="0002", m = 1)
grain.r = Vect3(0, 0, 0)
grain.v = Vect3(30, 40, 0)
# define gravitational field and force
g = Vect3(0, -10, 0)
gravitational = Gravitational(field=g)
import numpy as np
# define iteration
tbeg = 0
tend = 8
N = 100
dt = (tend - tbeg) / N
# define lists
data_t = []
data_x = []
data_y = []
data_vx = []
data_vy = []
# perform iteration
#print("#t x y vx vy")
print("Calculate position and velocity.")
for i in range(N + 1):
t = i
m = grain.m
v = grain.v
r = grain.r
data_t.append(t)
data_x.append(r.x)
data_y.append(r.y)
data_vx.append(v.x)
data_vy.append(v.y)
fg = gravitational.force(grain)
a = fg / m
v += a * dt
r += v * dt
grain.v = v
grain.r = r
#print(t, ' ', end='')
#print(r.x, ' ', r.y, ' ', end='')
#print(v.x, ' ', v.y)
print("Plot data.")
from matplotlib.pyplot import figure
import matplotlib.pyplot as plt
figure(figsize=(5,3.5), dpi=80)
plt.plot(data_x, data_y, c='r')
plt.xlabel('x')
plt.ylabel('y')
plt.grid()
plt.xlim([0, 240])
plt.ylim([0, 80])
plt.xticks(np.arange(0, 240+0.01, 40))
plt.yticks(np.arange(0, 80+0.01, 20))
plt.text(60, 39, "$v_x = 30$, $v_y = 40$, $m = 1$", fontsize=12)
plt.text(98, 30, "$g = -10$", fontsize=12)
print("Save figure.")
plt.savefig('parabolic_gravitational_euler.png', bbox_inches='tight')
circular motion
from butiran.color2 import Color2
from butiran.math.vect3 import Vect3
from butiran.grain import Grain
from butiran.force.magnetic import Magnetic
# define grain with initial position and velocity
grain = Grain(id="0001", m = 1, q = 1)
grain.r = Vect3(1, 0, 0)
grain.v = Vect3(0, 1, 0)
# define magnetic field and force
B = Vect3(0, 0, -1)
magnetic = Magnetic(field=B)
import numpy as np
# define iteration
tbeg = 0
tend = 2 * np.pi
N = 10000
dt = (tend - tbeg) / N
# define lists
data_t = []
data_x = []
data_y = []
data_vx = []
data_vy = []
# perform iteration
#print("#t x y vx vy")
print("Calculate position and velocity.")
for i in range(N + 1):
t = i
m = grain.m
v = grain.v
r = grain.r
data_t.append(t)
data_x.append(r.x)
data_y.append(r.y)
data_vx.append(v.x)
data_vy.append(v.y)
fB = magnetic.force(grain)
a = fB / m
v += a * dt
r += v * dt
grain.v = v
grain.r = r
#print(t, ' ', end='')
#print(r.x, ' ', r.y, ' ', end='')
#print(v.x, ' ', v.y)
print("Plot data.")
from matplotlib.pyplot import figure
import matplotlib.pyplot as plt
figure(figsize=(5,5), dpi=80)
plt.plot(data_x, data_y, c='r')
plt.xlabel('x')
plt.ylabel('y')
plt.grid()
plt.xlim([-1.5, 1.5])
plt.ylim([-1.5, 1.5])
plt.xticks(np.arange(-1.5, 1.5+0.01, 0.5))
plt.yticks(np.arange(-1.5, 1.5+0.01, 0.5))
plt.text(-0.5, 0.2, "$B = 1, m = 1, q = 1$", fontsize=12)
plt.text(-0.4, -0.05, "$\Delta t = 2 \pi \ / \ 10^4$", fontsize=12)
plt.text(-0.3, -0.3, "$T \in [0, 2\pi]$", fontsize=12)
print("Save figure.")
plt.savefig('circular_magnetic_euler.png', bbox_inches='tight')
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pasir-0.0.5.tar.gz
(8.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
pasir-0.0.5-py3-none-any.whl
(12.5 kB
view details)
File details
Details for the file pasir-0.0.5.tar.gz.
File metadata
- Download URL: pasir-0.0.5.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
894f91ac1e1e380c947e829157ef9823fa94e8a8ff2c6bdd6fb014af17feb212
|
|
| MD5 |
f34473496f63dc2e18d6f8722b860d5d
|
|
| BLAKE2b-256 |
c76d73f71611ef77c99880f246f5839932d52c78b517d97e17d2d2786734d860
|
File details
Details for the file pasir-0.0.5-py3-none-any.whl.
File metadata
- Download URL: pasir-0.0.5-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4b851e2a5f1c9db9f5872c42e22529ac9d8199ddc5e1d0184b853dc457ef959
|
|
| MD5 |
b3d5ae7e4159a5e1911e1685a33d95eb
|
|
| BLAKE2b-256 |
149a41f213a51c14db232025b9467e6bfebaf1c4178f23db2a529f6e7576e4e5
|