Daniel Correia
Daniel Correia
I was trying to build a (dubious) test-case for current density by putting a source in a conductive medium, like so: ```python grid[x_,y_,z_] = fdtd.AbsorbingObject(permittivity=1.0, conductivity=conductivity) grid[x_,y_,z_] = fdtd.PointSource(period=500) ```...
When testing 3D geometries, it seemed pretty helpful to dump .vtk files with object and field grids. The pyEVTK lib [makes this pretty clean](https://github.com/0xDBFB7/fdtd_PCB_extensions/blob/master/fdtd_PCB_extensions/fdtd_PCB_extensions/visualize.py), might perhaps be worth an optional...
I have a simple Wifi AP mode setup page, which is served roughly like so: ``` import network import socket ap = network.WLAN(network.AP_IF) sta_if = network.WLAN(network.STA_IF) ap.active(True) sta_if.active(True) ap.config(essid="test") ap.ifconfig(('1.1.1.1',...
Hi Bruce Ravel, Thanks for this great software! This is just a clone of the ConvoluteNoise.pm panel to expose larch's `xas_deconvolve`. I'm new to perl, so apologies for any faux...