Skip to main content

RDG Networks project

Project description

Overview

This Python package provides code regarding the RDG networks project.

License Python Version

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rdg_networks-0.3.15.tar.gz (29.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rdg_networks-0.3.15-py3-none-any.whl (40.5 kB view details)

Uploaded Python 3

File details

Details for the file rdg_networks-0.3.15.tar.gz.

File metadata

  • Download URL: rdg_networks-0.3.15.tar.gz
  • Upload date:
  • Size: 29.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for rdg_networks-0.3.15.tar.gz
Algorithm Hash digest
SHA256 351f36a3ca431d41dc4b4440cda5b140e6049326e1552e1d5e5d0cc5d4244241
MD5 eefd6d8ee194385ab71395e77a61f8ba
BLAKE2b-256 7517328aac344809003a02f464cc471984a9f48dba960d926484222c396f913a

See more details on using hashes here.

File details

Details for the file rdg_networks-0.3.15-py3-none-any.whl.

File metadata

  • Download URL: rdg_networks-0.3.15-py3-none-any.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for rdg_networks-0.3.15-py3-none-any.whl
Algorithm Hash digest
SHA256 b49fd0914cf0d9257f27ead5715866fbcf0167b5a004d704cd1fe859f741a8f1
MD5 a1c1c28bcb433867707329967323a315
BLAKE2b-256 013ae366a485d29362518e5e6ec1e772a1a42d6d77fac1664b8b0754603a0824

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page