Zeyu Mao

Results 72 comments of Zeyu Mao

Supported in v1.3.5. Test will be added in 1.4.0.

Once `toolz` and `tqdm` support Python 3.11, it should be the time to support Python 3.11 ourselves.

toolz: https://github.com/pytoolz/toolz/issues/554 tqdm: https://github.com/tqdm/tqdm/issues/1387

needs to bump the toolz version to the main branch, and tqdm to the latest pypi version.

Is there a script command that allows you to save specific fields instead of saving all like `TSResultStorageSetAll`? Save all might works fine for small cases, but would quickly become...

And which function should be used to retrieve the TS results?

@faoh 1. Please consider using vectorization to replace iterating a dataframe. If you have to do that, consider using `df.iterrows()` instead of the vanilla loop. 2. There is no need...

@faoh Good job! Now you could consider vectorizing most of the loops, e.g. ```python for i in range(num_gen): flow = gen.loc[i, f"Gen{target}"] EFM[0][i+1] += flow # [row][col] ``` The above...

I have the similar problem where I try to connect multiple outstations to a single master.

@xernoxian What I came up with is to use a pooling scheme to recreate the channel and the master everytime to cover all the outstations. It works well as a...