WebGPU-Based WiFi Simulator
61–70 of 95 posts
Re: WebGPU-Based WiFi Simulator
#62When I run the Waveguide Simulator demo on my Alienware M15 Ryzen Ed. R5 (has a RTX 3070; Windows 11 Pro, Chrome v129), I hear a distinct high pitched flutter noise emanating from my laptop. I thought it was from the speakers, but no, with my volume down it was still present as long as the simulator was playing. Weird, but very cool demo (probably my hardware, never hear this during games or other WebGPU demos). The…
Re: WebGPU-Based WiFi Simulator
#63I have a Wifi 6E router, so I wonder if 6GHz vs 5 vs 2.4 acts noticeabley differently here? Is the overall shape the same or does the frequency make a big difference?
Re: WebGPU-Based WiFi Simulator
#64Earlier quoted context omitted.
I don't understand what other type of solution is there to render on a gpu other than a numeric one? Here is a very basic shader for what you want: float freq1 = 2.0; float freq2 = 3.0; float amp = 0.5; pos.z += sin(pos.x * freq1 + uTime) * amp; pos.z += cos(pos.y * freq2 + uTime) * amp; gl_Position = projectionMatrix * modelViewMatrix * vec4(pos, 1.0);
Did ChatGPT write that for you because it has missed the mark by 500 metres.
Re: WebGPU-Based WiFi Simulator
#65Re: WebGPU-Based WiFi Simulator
#66Bugs: #1 if you spam the "add a new source" button you eventually get a JavaScript exception logged to the screen due to an array with a fixed max size of 128 elements overflowing. #2 this could be graphics card or driver specific (I have an AMD card), but scrolling just right can can break the simulation due the the text boxes; for example by quickly paging up and down, or scrolling all the way to the bottom and the…
I did get #2 on an Apple M1, so probably not video card specific.
Re: WebGPU-Based WiFi Simulator
#67Earlier quoted context omitted.
Its in technology preview, so likely to go GA at the next major OS cycle (1yish)
I'm not holding my breath, their WebGL2 support entered preview in early 2017 but didn't actually ship until late 2021...
Re: WebGPU-Based WiFi Simulator
#68A. Why?
B. What a bad error message
Re: WebGPU-Based WiFi Simulator
#69"Sorry, WebGPU is not supported on your device" Firefox, Nvidia A. Why? B. What a bad error message
Re: WebGPU-Based WiFi Simulator
#70It seems like that would apply here as well, at least when looking at the effects of refraction?