Agent6-6-6

Results 17 comments of Agent6-6-6

Can anyone provide an update on whether or not they got a solution working with an esp32 replacing the module in the CZ-CAPWFC1 wifi adaptor? Thanks.

@robbievanleeuwen, noted as well just now that the docstring in `AS3600.moment_interaction_diagram` also needs to be updated as it does not reference the updated limits or control point changes that were...

It goes without saying some consistent units should be utilised for the analysis. For metric, this is typically going to be N and mm, but the output you'll typically want...

Hi @robbievanleeuwen, hopefully, the following makes sense! In the `NZS3101` class, I was directly accessing these `ultimate_strain` and `compressive_strength` variables when creating the different sections for the various types of...

Generally only use bonded in NZ (similar to Australia as I understand it). Don't think the NZ code really differentiates between bonded or unbounded for that particular criteria. I think...

One thing to be aware of, the metric and imperial versions of ACI318 have slight differences in many of the formulas for the constants. They are not a direct conversion...

@Lomarandil, a few thoughts/brain dump below:- I'd imagine one class with both equations if they differ slightly would probably be the most logical approach, this would prevent repeating larger amounts...

```python class ACI318: def __init__(self, metric: bool = False): self.metric = metric self.metric_test() def metric_test(self): if self.metric: print(f"I'm inside ACI318 and metric = {self.metric}") else: print(f"I'm inside ACI318 and metric...

- [x] add bilinear EC2 - [x] add generic parabolic curve (essentially the same as the original `EurocodeParabolicUltimate` class), revise docstring as required. - [ ] add tests to cover...

> As a result, I think the comparison plot in the AS3600 example should be consistent, let me know your thoughts. Yeah agree, appears to be correct in that case....