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.13.tar.gz (28.8 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.13-py3-none-any.whl (34.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: rdg_networks-0.3.13.tar.gz
  • Upload date:
  • Size: 28.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for rdg_networks-0.3.13.tar.gz
Algorithm Hash digest
SHA256 44e04483244c84d9477e8e3c827752fb52e3e9cbca20e9e96cb2b93e7089b559
MD5 5755bce3262a7d8babea29194ca8c42b
BLAKE2b-256 e6561bf6a91e2944b3f1d3d87f46097f1210bfe48e74849cc22b64888358bbed

See more details on using hashes here.

File details

Details for the file RDG_Networks-0.3.13-py3-none-any.whl.

File metadata

  • Download URL: RDG_Networks-0.3.13-py3-none-any.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for RDG_Networks-0.3.13-py3-none-any.whl
Algorithm Hash digest
SHA256 d69a8a4ba49c5a71c035cb83ac3eff671c690bd81d8462952c820380b42466f3
MD5 3c0be94ece18d666406ee4155c30414d
BLAKE2b-256 ee4dd7b78616d1be7b1ab361ffad9f19bfa2f8e3dc25f7bcc06aea76c34ba194

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