Baiyi Yu

Results 42 comments of Baiyi Yu

One can try some thing like ``` using Distributed, SlurmClusterManager addprocs(SlurmManager(),exeflags=["--project=.", "-t$(ENV["SLURM_CPUS_PER_TASK"])", "--color=yes", "--startup-file=no"]) @everywhere function sleep_println(s) sleep(10) println("hello world") flush(stdout) end pmap(sleep_println,1:parse(Int64,ENV["SLURM_NTASKS"])) ```

For now, I manually set `conj(real_number)` to `real_number` as a workaround for this issue. It is kind of inconvenient. For example, I need to manually define `x_conj=g'/omega` for `x=g/omega` with...

I do not go through all the code of `QuantumCumulants.jl`. It seems not complex that we can define a new type `RNumber

Hi @jfeist . I have an example needing division by parameters. As for dispersive coupling, you introduce a parameter $$\epsilon=\frac{g}{\Delta}\ll 1,$$ where $g$ is the coupling rate and $\Delta$ is...

Thanks for your quick reply and solution @jfeist . I just tried `filter_xxinv`. It works good for inverse parameter like `Pr"Δ^{-1}"`. How about a more complex situation where I have...

I just found that if I substituted $\omega_i$ with $\omega+\Delta_i$ , I would use `Pr"Δ^{-1}"` with `filter_xxinv` directly to simplify the expresion. Hope there is a way to make it...

In `TimeDepedentSum(1.0=>H_static, cos=>H_drive1, t->10.0 * sin(5*t)=>H_drive2)`, `TimeDepedentSum` should be `TimeDependentSum` and `t->10.0 * sin(5*t)=>H_drive2` should be `(t->10.0 * sin(5*t))=>H_drive2`

Is there a quick method to fix it on the user side?