nkr0
nkr0
@dArignac why do you only minify inline js and not js files in the build folder?
As an update, I can sort of share screen on wayland with signal v5.12. Sort of, because I could pick and share any individual window, but not the whole screen.
Doesn't putting write/read checkpoints inside `if *required` prevent this? My understanding is that the solver has to be at one of the ends of a coupling step for these to...
Furthermore, CalculiX's check for sub-cycle convergence is `icutb==0`. https://github.com/precice/calculix-adapter/blob/b01641e40c11e067f66cc41fbcb0253d08290ff0/nonlingeo_precice.c#L2683-L2725 This controls `memcpy` between `vini` and `vold` (`vini` is Calculix's sub-cycle "checkpoint") and precice checkpoints are also under this check, making...
> I am not sure I understand the solution. Why store a checkpoint in explicit coupling? Maybe you can extract only the relevant bit and call it always, independent of...
The part about restart from #8 is only something I misunderstood back then. Nothing to do with this PR or issue #8 itself. > This is just to clarify that...
Yes, understood. However, check the bit below, https://github.com/precice/calculix-adapter/blob/d1a4f5aa20eb39e9021b2bebdd0c7a5be485991c/nonlingeo_precice.c#L1119-L1125 in implicit coupling, when does `isTimestepComplete` return `true`? Is it **only** at the end of a **converged** coupling time-step, or every time...
Is there a difference in how `Precice_IsWriteCheckpointRequired` responds in implicit coupling and explicit coupling? https://github.com/precice/calculix-adapter/blob/10938d846aa99e1b5a7c8a38dbf4cf5082c586aa/nonlingeo_precice.c#L1116
So, when should `sim->coupling_init_v` be updated in explicit coupling? Do you mean for simulation restarts? https://github.com/precice/calculix-adapter/blob/10938d846aa99e1b5a7c8a38dbf4cf5082c586aa/adapter/CCXHelpers.c#L83 Here the previous solution is added to `coordinates` and the comment says it is...
Right! https://github.com/precice/calculix-adapter/blob/10938d846aa99e1b5a7c8a38dbf4cf5082c586aa/adapter/CCXHelpers.c#L148 This must be why I was getting wrong velocities when computed at the fluid side from `DisplacementDeltas` in explicit coupling. I thought the mistake was on the fluid...