i am trying to use this approach
Article Computational Geometry-Based 3D Yarn Path Modeling of Wound ...
You can try the below, it is a simple code that can maintain the core functionality of generating a non-geodesic filament winding trajectory. You can modify it for your specific composite manufacturing applications.
import numpy as np
import matplotlib.pyplot as plt
class FilamentWinding:
def __init__(self, radius, angle, complexity=1):
self.radius = radius
self.angle = np.radians(angle)
self.complexity = complexity
def generate_trajectory(self, points=100):
theta = np.linspace(0, 2*np.pi, points)
# Non-geodesic path variations
radial_var = self.radius * (1 + self.complexity * np.sin(self.complexity * theta))
x = radial_var * np.cos(theta)
y = radial_var * np.sin(theta)
z = self.radius * np.sin(self.angle) * theta
return np.column_stack((x, y, z))
def plot(self, trajectory):
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.plot(trajectory[:, 0], trajectory[:, 1], trajectory[:, 2])
plt.show()
# Usage
winding = FilamentWinding(radius=1, angle=45, complexity=1.5)
trajectory = winding.generate_trajectory()
winding.plot(trajectory)
Don't forget to these libraries:
pip install numpy matplotlib
thank you Oluwatosin Agbaakin
I am trying to optimize my control titration for ITC so that I can ensure my ligand to protein traces are reliable. My small molecule is stored in DMSO. I have been very careful to avoid buffer...
14 February 2024 9,147 3 View
Hello, I have recently switched from doing ligand into protein for ITC because my ligand is in DMSO and has low solubility at 10% DMSO; therefore, now I am doing protein into ligand -- the heat...
09 February 2024 4,680 1 View
Hello, I am having an ITC issue because I cant increase my ligand concentration due to solubility issues. I know there is past literature on reverse titrations being acceptable. I am more asking...
06 February 2024 5,564 2 View
Hello, I am doing ITC and getting repeatable curves that look very promising. After reading some articles, it seems the biggest challenge to avoid is buffer mismatch. Is there a way to rule out...
18 January 2024 1,224 5 View
Request for Collaboration on Geospatial and Multilevel Analysis for Obstetric Fistula Research Dear ResearchGate Team, I hope this letter finds you well. and I am a Ph.D. student currently engaged...
10 January 2024 8,416 0 View
Hello, I have had moderate success with ITC but most of my issues have been with the Nano Program in fitting. I have a clear curve but the program is not fitting it correctly, does anyone have a...
22 December 2023 9,331 1 View
Hello, I am doing a titration of ligand into protein and am getting good heat releases compared to my ligand into buffer. I am getting more heat release in later injections. Could cooperativity...
07 November 2023 775 4 View
I would like to know how long it takes to get access after requesting permission from authors for articles.
13 October 2023 530 2 View
Electromagnetic waves with frequencies approaching those of a plasma with a similar election plasma frequency, are highly reflected/absorbed by the plasma and can be predicted by a dispersion...
17 August 2023 2,737 0 View
I am capturing fluorescent microscopy images of a developmental process with a high degree of variability. I need to compile these images into a "gallery" so that I can see many/all images at once...
26 July 2023 3,140 3 View
I have virus (viral hemorrhagic septicemia virus) in suspension and the experiment will not involve cells. What level of TCID50 is preferred?
11 August 2024 3,115 1 View
I am developing a predictive model for a water supply network that involves 20 influencing points. However, I only have historical data for 10 out of these 20 points. I would like to know how to...
10 August 2024 4,005 2 View
I'm currently exploring the application of Python in textile engineering, specifically in areas like data analysis, process automation, and the development of smart textiles. I'm interested in...
10 August 2024 7,429 2 View
"PUBLISHING IN A SCOPUS JOURNAL" Researchers are now at a cross road. The critical need to publish in a Scopus or ISI, etc journal is ever vital. Journal Publication fees must be submitted....
10 August 2024 8,621 1 View
Hello everyone, I am currently developing a thesis proposal and would appreciate your input on its viability and how to effectively carry it out. My proposed topic is: "Does the perceived threat...
10 August 2024 8,992 0 View
Usually, additive manufacturing techniques like SEBM, SLS, and SLM are used for interconnected porous lattice structure generation with sizes of >100–200 micrometers. Can the Fused Deposition...
09 August 2024 7,892 0 View
I need to model an anisotropic material in which the Poisson's ratio ν_12 ≠ ν_21 and so on. Therefore, the elastic compliance matrix wouldn't be a symmetric one. In ANSYS APDL, for TB,ANEL...
09 August 2024 5,048 2 View
Request Python code from this article : Gender equity of authorship in pulmonary medicine over the past decade. THANKS!
08 August 2024 6,242 2 View
Who will bear moral responsibility for the deaths of thousands of people in the event of an earthquake? Weeks and months remain before the onset of strong earthquakes that bring death to...
08 August 2024 6,134 12 View
I am trying to simulate vehicular loading on an orthotopic steel deck bridge section in ABAQUS software. The red arrow mark in the attached figure indicates the direction in which the vehicle will...
08 August 2024 719 0 View