Kei Yamamoto

Results 13 issues of Kei Yamamoto

- Fixed the broken link for mesh files - Deleted functionality to save velocity at the outlet as this is not relevant for just running straight pipe problems.

Very minor point, but `remove` should be called from single rank only.

Possible new features that might be nice to have in morphman - Change aspect ratio of aneurysm sac by changing either width or height of aneurysm. - Expand or shrink...

enhancement

This PR adds functionality to use different coefficients for different boundaries when using the Robin boundary condition. More specifically, * We should now define `k_s` and `c_s` as a list...

Current pytest implementation does not test `mpirun` or `restart` function. These two must be added to the pytest. Also, I think we should reconsider `TF_fsi` as a benchmark problem and...

Inside `monolithic.py`, we have a conditional for time loop as follows. https://github.com/KVSlab/turtleFSI/blob/0b95d443e3d694a118c1aab16599a7b58c5118e5/turtleFSI/monolithic.py#L156 I think `+ dt/10` should really be `-dt/10` to ensure `t==T` because adding `dt/10` makes it go into...

gravity should be replaced with `body force`. Current implementation only allows us to apply force in y-direction https://github.com/KVSlab/turtleFSI/blob/c52ebc2b6a0a72a2bb1f9ea9bbfc26b56252fec8/turtleFSI/modules/solid.py#L63-L66 `Oasis` can be used as a reference point for the body force....

enhancement

https://github.com/KVSlab/turtleFSI/blob/e1b5350f5f105487bd77b811796f24e3b6075ea2/turtleFSI/problems/TF_fsi.py#L41 should be `lambda_s=8e6`

Same problem as https://github.com/KVSlab/VaSP/issues/157

Hi @hkjeldsberg If I understand correctly, `save_frequency` is the time step frequency used during the simulation, while `step` is how often you want to save the outputs. https://github.com/KVSlab/VaMPy/blob/6c6468a4d8fcda89c330c9b01cea253e1bd3c8c3/src/vampy/automatedPostprocessing/compute_flow_and_simulation_metrics.py#L44 Here, `saved_time_steps_per_cycle`...