RDG Networks project
Project description
Overview
This Python package provides code regarding the RDG networks project.
Table of Contents
Features
No thickness
- generate_line_segments: Function that determines the linesegments of a RDG network.
- generate_line_network: Function that makes the underlying network of the linesegments.
- get_intersection_segments: Function that determines the intersection segments of a RDG network.
- generate_line_segments_dynamic: Function that determines the segments of a dynamic RDG network (with increasing linelengths in time).
- draw_segments: Function that draws the segments.
Thickness
-
generate_line_segments_thickness: Generates segment network with thicknesses
-
orientate_network: Generates various rotated versions of the initial network.
-
save_to_stl: Saves the network as a stl file.
-
save_to_json: Saves data as a json file.
-
load_from_json: Loads data as a json file.
Installation
You can install the package using pip:
pip install RDG-networks
Usage
Output
The main function is called generate_line_segments_thickness and outputs the following data:
data_dict = {'segments_dict': segments_dict,
'polygon_arr': polygon_arr,
'segment_thickness_dict': segment_thickness_dict,
'jammed': jammed,
'generated_config': generated_config}
- segment_thickness_dict: contains the generated network, represented by multiple polygons.
- segments_dict: contains auxilliary information of the generated network.
- polygon_arr: contains auxilliary information of the generated network.
- jammed: A boolean indicating if the system is jammed.
- generated_config: An array containing all nucleation points and orientations of the segments.
Code example
import matplotlib.pyplot as plt
import numpy as np
import os
import sys
import random
from RDG_networks.thickness.generate_line_segments_thickness import generate_line_segments_thickness
from RDG_networks import save_to_stl
from RDG_networks.save_data import save_to_json, load_from_json
size = 15
lamb0 = 0.2
alpha = 0.52
thickness_arr = [lamb0 * t**(-alpha) for t in range(1, size + 1)]
box_size = 1
angles = [random.random() * 2 * np.pi for _ in range(size)]
# Generate initial structure with specified parameters
data_dict = generate_line_segments_thickness(size=size, thickness_arr=thickness_arr, angles=angles, box_size=box_size)
# Setup plot
fig, ax1 = plt.subplots(nrows=1, ncols=1, figsize=(5, 5))
segment_thickness_dict = data_dict['segment_thickness_dict']
for key, segment in segment_thickness_dict.items():
segment.draw(ax1)
middle_segment = segment.middle_segment
if middle_segment:
middle_segment.draw(ax1)
# Set plot limits and disable ticks
ax1.set(xlim=(0, 1), ylim=(0, 1))
ax1.set_xticks([])
ax1.set_yticks([])
# Save to STL and JSON files
save_to_stl(segment_thickness_dict, thickness=0.2, name=os.path.join(sys.path[0], 'network.stl'), frame_thickness=0.1)
file_path = os.path.join(sys.path[0], 'data.json')
save_to_json(data_dict, file_path)
data = load_from_json(file_path)
# Display the plot
plt.show()
Configuration
No specific configuration is required.
License
All Rights Reserved
The following code and its accompanying documentation are the property of Martijn (Niek) Mooij. All rights are reserved. No part of this code may be reproduced, distributed, or transmitted in any form or by any means, including photocopying, recording, or other electronic or mechanical methods, without the prior written permission of the author, except in the case of brief quotations embodied in critical reviews and certain other noncommercial uses permitted by copyright law. For permission requests, write to the author at mooij.niek@gmail.com.
Copyright 2024 Niek Mooij
Contact
You can contact me at mooij.niek@gmail.com for any questions or suggestions.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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
File details
Details for the file rdg_networks-0.3.12.tar.gz.
File metadata
- Download URL: rdg_networks-0.3.12.tar.gz
- Upload date:
- Size: 28.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cdc2fdb4d05d1c1ba21afe682175db99fba0f35c8be3ae7e78194c31a8b04ff
|
|
| MD5 |
0de4fadc97e4e1a8425035b6a2c338ef
|
|
| BLAKE2b-256 |
188452a59118569cf9445a276add5538f34ceed1d95240563b965541a8fb9827
|
File details
Details for the file RDG_Networks-0.3.12-py3-none-any.whl.
File metadata
- Download URL: RDG_Networks-0.3.12-py3-none-any.whl
- Upload date:
- Size: 34.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54c41c484261e53526efae47b83252b2bbd68c38cd40a623c327e8d04ae19c6e
|
|
| MD5 |
966715779d4e6bd3e3a2c51de2575dbb
|
|
| BLAKE2b-256 |
6b59eb717ed12fde55b2ca3e73c73272b919fcffcb0ff70ccd7f6da6d07c1a93
|