├── .github └── ISSUE_TEMPLATE │ ├── 1_bug_report.yml │ └── config.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bench ├── bench.mx3 ├── gpus.gplot ├── gpus.txt └── oommf4M.txt ├── cmd ├── gccgorun ├── mumax3-convert │ ├── .gitignore │ ├── Makefile │ ├── csv.go │ ├── gnuplot.go │ ├── json.go │ ├── main.go │ ├── normalize.go │ ├── numpy.go │ ├── resize.go │ ├── tasks.go │ └── vtk.go ├── mumax3-httpfsd │ ├── Makefile │ └── main.go ├── mumax3-plot │ ├── .gitignore │ ├── Makefile │ └── main.go ├── mumax3-script │ ├── .gitignore │ ├── Makefile │ ├── main.go │ └── mumax3-int ├── mumax3-server │ ├── Makefile │ ├── compute.go │ ├── doc.go │ ├── job.go │ ├── main.go │ ├── peers.go │ ├── que.go │ ├── rpc.go │ ├── status.go │ ├── user.go │ ├── utitl.go │ └── watchdog.go └── mumax3 │ ├── .gitignore │ ├── Makefile │ ├── browser.go │ ├── main.go │ ├── mumax3.sh │ ├── queue.go │ └── vet.go ├── cuda ├── .gitignore ├── Makefile ├── alloc.go ├── amul.h ├── angles.go ├── anisotropy.go ├── atomicf.h ├── buffer.go ├── buffer_test.go ├── bytes.go ├── constants.h ├── conv_common.go ├── conv_copypad.go ├── conv_demag.go ├── conv_kernmul.go ├── conv_mfm.go ├── conv_selftest.go ├── copypadmul2.cu ├── copypadmul2_wrapper.go ├── copyunpad.cu ├── copyunpad_wrapper.go ├── crop.cu ├── crop.go ├── crop_wrapper.go ├── crossproduct.cu ├── crossproduct.go ├── crossproduct_wrapper.go ├── cu │ ├── Makefile │ ├── README │ ├── cgoflags.go │ ├── context.go │ ├── context_test.go │ ├── device.go │ ├── device_test.go │ ├── dim3.go │ ├── doc.go │ ├── execution.go │ ├── function.go │ ├── init.go │ ├── init_test.go │ ├── memory.go │ ├── memory_test.go │ ├── memset.go │ ├── module.go │ ├── module_test.go │ ├── peer.go │ ├── result.go │ ├── stream.go │ ├── testdata │ │ ├── testmodule.cu │ │ └── testmodule.ptx │ ├── version.go │ └── version_test.go ├── cubicanisotropy2.cu ├── cubicanisotropy2_wrapper.go ├── cuda2go.go ├── cufft │ ├── Makefile │ ├── README │ ├── cgoflags.go │ ├── doc.go │ ├── fft_test.go │ ├── init_test.go │ ├── mode.go │ ├── plan.go │ ├── result.go │ └── type.go ├── curand │ ├── Makefile │ ├── README │ ├── cgoflags.go │ ├── generator.go │ └── status.go ├── div.cu ├── div_wrapper.go ├── dmi.cu ├── dmi.go ├── dmi_wrapper.go ├── dmibulk.cu ├── dmibulk.go ├── dmibulk_wrapper.go ├── dotproduct.cu ├── dotproduct.go ├── dotproduct_wrapper.go ├── exchange.cu ├── exchange.go ├── exchange.h ├── exchange_wrapper.go ├── exchangedecode.cu ├── exchangedecode_wrapper.go ├── fatbin.go ├── fft3dc2r.go ├── fft3dr2c.go ├── fftplan.go ├── float3.h ├── hopf-emergentmagneticfield-solidangle.cu ├── hopf-emergentmagneticfield-solidangle_wrapper.go ├── hopf-emergentmagneticfieldfivepoint.cu ├── hopf-emergentmagneticfieldfivepoint_wrapper.go ├── hopf-emergentmagneticfieldtwopoint.cu ├── hopf-emergentmagneticfieldtwopoint_wrapper.go ├── hopf-vectorpotential.cu ├── hopf-vectorpotential_wrapper.go ├── hopfindex-five-point.go ├── hopfindex-solidangle-fourier-field.cu ├── hopfindex-solidangle-fourier-field_wrapper.go ├── hopfindex-solidangle-fourier-scale.cu ├── hopfindex-solidangle-fourier-scale_wrapper.go ├── hopfindex-solidangle-fourier-summand.cu ├── hopfindex-solidangle-fourier-summand_wrapper.go ├── hopfindex-solidangle-fourier.go ├── hopfindex-solidangle.go ├── hopfindex-two-point.go ├── init.go ├── init_test.go ├── kernmulc.cu ├── kernmulc_wrapper.go ├── kernmulrsymm2dxy.cu ├── kernmulrsymm2dxy_wrapper.go ├── kernmulrsymm2dz.cu ├── kernmulrsymm2dz_wrapper.go ├── kernmulrsymm3d.cu ├── kernmulrsymm3d_wrapper.go ├── llnoprecess.cu ├── llnoprecess_wrapper.go ├── lltorque.go ├── lltorque2.cu ├── lltorque2_wrapper.go ├── lut.go ├── madd.go ├── madd2.cu ├── madd2_wrapper.go ├── madd3.cu ├── madd3_wrapper.go ├── madd4.cu ├── madd4_wrapper.go ├── madd5.cu ├── madd5_wrapper.go ├── madd6.cu ├── madd6_wrapper.go ├── madd7.cu ├── madd7_wrapper.go ├── magnetoelastic.go ├── magnetoelasticfield.cu ├── magnetoelasticfield_wrapper.go ├── magnetoelasticforce.cu ├── magnetoelasticforce_wrapper.go ├── maxangle.cu ├── maxangle.go ├── maxangle_wrapper.go ├── minimize.cu ├── minimize.go ├── minimize_wrapper.go ├── mslice.go ├── mul.cu ├── mul_wrapper.go ├── normalize.cu ├── normalize.go ├── normalize_wrapper.go ├── phi.cu ├── phi_wrapper.go ├── reduce.go ├── reduce.h ├── reduce_test.go ├── reducedot.cu ├── reducedot_wrapper.go ├── reducemaxabs.cu ├── reducemaxabs_wrapper.go ├── reducemaxdiff.cu ├── reducemaxdiff_wrapper.go ├── reducemaxvecdiff2.cu ├── reducemaxvecdiff2_wrapper.go ├── reducemaxvecnorm2.cu ├── reducemaxvecnorm2_wrapper.go ├── reducesum.cu ├── reducesum_wrapper.go ├── region.go ├── regionadds.cu ├── regionadds_wrapper.go ├── regionaddv.cu ├── regionaddv_wrapper.go ├── regiondecode.cu ├── regiondecode_wrapper.go ├── regionselect.cu ├── regionselect_wrapper.go ├── resize.cu ├── resize.go ├── resize_wrapper.go ├── shift.go ├── shiftbytes.cu ├── shiftbytes_wrapper.go ├── shiftbytesy.cu ├── shiftbytesy_wrapper.go ├── shiftedgecarryx.cu ├── shiftedgecarryx_wrapper.go ├── shiftedgecarryy.cu ├── shiftedgecarryy_wrapper.go ├── shiftx.cu ├── shiftx_wrapper.go ├── shifty.cu ├── shifty_wrapper.go ├── shiftz.cu ├── shiftz_wrapper.go ├── slice.go ├── slice_test.go ├── slonczewski.go ├── slonczewski2.cu ├── slonczewski2_wrapper.go ├── stencil.h ├── sum.h ├── temperature.go ├── temperature2.cu ├── temperature2_wrapper.go ├── theta.cu ├── theta_wrapper.go ├── topologicalcharge.cu ├── topologicalcharge.go ├── topologicalcharge_wrapper.go ├── topologicalchargelattice.cu ├── topologicalchargelattice.go ├── topologicalchargelattice_wrapper.go ├── uniaxialanisotropy2.cu ├── uniaxialanisotropy2_wrapper.go ├── util.go ├── zeromask.cu ├── zeromask.go ├── zeromask_wrapper.go ├── zeromaskinv.cu ├── zeromaskinv_wrapper.go ├── zhangli.go ├── zhangli2.cu └── zhangli2_wrapper.go ├── data ├── Makefile ├── crop.go ├── doc.go ├── mesh.go ├── meta.go ├── resample.go ├── reshape.go ├── slice.go ├── slice_test.go └── vector.go ├── deploy ├── .gitignore ├── deploy_linux.bash └── deploy_windows.ps1 ├── doc ├── .gitignore ├── Makefile ├── README ├── apigen.go ├── gpus.go ├── make.go ├── mask.png ├── myfile.ovf ├── static │ ├── api310.html │ ├── api39c.html │ ├── download310.html │ ├── gpus.svg │ ├── header.js │ ├── mfm.svg │ ├── nimble-cubes128-xmas.png │ ├── nimble-cubes128.png │ ├── style.css │ ├── web1.png │ └── web2.png ├── templates │ ├── api-template.html │ ├── download-template.html │ ├── examples-template.html │ ├── head.html │ ├── header.html │ ├── headerpage-template.html │ └── index-template.html └── tex │ ├── .gitignore │ ├── Makefile │ └── mumax3.tex ├── draw ├── Makefile ├── arrows.go ├── colorscale.go ├── doc.go ├── encode.go ├── hslscale.go ├── image.go └── svg.go ├── dump ├── Makefile ├── read.go └── write.go ├── engine ├── Makefile ├── anisotropy.go ├── asyncio.go ├── autosave.go ├── average.go ├── backwardeuler.go ├── bib.go ├── comp.go ├── config.go ├── crop.go ├── customfield.go ├── demag.go ├── effectivefield.go ├── energy.go ├── engine.go ├── euler.go ├── exchange.go ├── excitation.go ├── ext_angles.go ├── ext_bubblepos.go ├── ext_centerbubble.go ├── ext_centerwall.go ├── ext_corepos.go ├── ext_dwtilt.go ├── ext_hopfindex.go ├── ext_magnetoelastic.go ├── ext_make3dgrains.go ├── ext_makegrains.go ├── ext_rmsurfacecharge.go ├── ext_topologicalcharge.go ├── ext_topologicalchargelattice.go ├── functionfromfile.go ├── geom.go ├── gofiles.go ├── gui.go ├── heun.go ├── html.go ├── log.go ├── lutdata.go ├── magnetization.go ├── maxangle.go ├── mesh.go ├── mfm.go ├── minimizer.go ├── number.go ├── od.go ├── oneregion.go ├── outputquantities.go ├── parameter.go ├── plot.go ├── quantity.go ├── regions.go ├── relax.go ├── render.go ├── rk23.go ├── rk4.go ├── rk45dp.go ├── rk56.go ├── run.go ├── save.go ├── scalar_excitation.go ├── script.go ├── shape.go ├── shift.go ├── table.go ├── temperature.go ├── torque.go ├── unsafe.go ├── util.go └── zeeman.go ├── freetype ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── README └── raster │ ├── geom.go │ ├── paint.go │ ├── raster.go │ └── stroke.go ├── go.mod ├── gui ├── Makefile ├── button.go ├── checkbox.go ├── clibox.go ├── console.go ├── data.go ├── datamodels.go ├── el.go ├── element.go ├── img.go ├── js.go ├── meter.go ├── number.go ├── page.go ├── page_test.go ├── progress.go ├── range.go ├── select.go ├── span.go ├── textbox.go └── util.go ├── httpfs ├── Makefile ├── client.go ├── httpfs.go ├── httpfs_test.go ├── reader.go └── server.go ├── mag ├── Makefile ├── constants.go ├── demagkernel.go └── mfmkernel.go ├── oommf ├── Makefile ├── oommf.go ├── ovf1.go ├── ovf2.go └── util.go ├── post-commit ├── pre-commit ├── script ├── Makefile ├── assignstmt.go ├── binaryexpr.go ├── blockstmt.go ├── call.go ├── child.go ├── compile.go ├── const.go ├── error.go ├── exec.go ├── expr.go ├── for.go ├── funcif.go ├── function.go ├── if.go ├── incdecstmt.go ├── index.go ├── lit.go ├── lvalue.go ├── ronly.go ├── script_test.go ├── selector.go ├── source.go ├── stdlib.go ├── stmt.go ├── test.txt ├── typeconv.go ├── unaryexpr.go └── world.go ├── svgo ├── LICENSE ├── Makefile ├── doc.go └── svg.go ├── test ├── .gitignore ├── anisenergy.mx3 ├── anisenergy2.mx3 ├── anisenergyconservation.mx3 ├── anisenergyconservation2.mx3 ├── anisenergyconservation3.mx3 ├── anisenergyconservation4.mx3 ├── antenna.go ├── average.mx3 ├── axes.mx3 ├── b_ext_add.mx3 ├── bubblepos.mx3 ├── bubbleshiftpos.mx3 ├── bw_euler.mx3 ├── centerwall.mx3 ├── centerwall_layer.mx3 ├── centerwall_region.mx3 ├── closure.mx3 ├── comp.mx3 ├── conical.mx3 ├── coreposition.mx3 ├── crop.mx3 ├── cubic_full.mx3 ├── cubicanisotropy.mif ├── cubicanisotropy.mx3 ├── cubicanisotropy.odt ├── custom_anisotropy.go ├── custom_anisotropy.mx3 ├── custom_exchange.mx3 ├── custom_std4.mx3 ├── demag2D.mx3 ├── demag2D_long.mx3 ├── demag2Dpbc.mx3 ├── demag2Dpbc2.mx3 ├── demag3Dfilm.mx3 ├── demagRegion.mx3 ├── demagSmall.mx3 ├── demagSmall3D.mx3 ├── demagcube.mx3 ├── demagodd.mx3 ├── demagrod.mx3 ├── demagrodpbc.mx3 ├── dindcoupling.mx3 ├── dmi.mx3 ├── dmi3d.mx3 ├── dmiY.mx3 ├── dmibc.mx3 ├── dmibulk.todo ├── dmibulksymm.mx3 ├── dmibulksymm1D.mx3 ├── dmienergy-vardbulk.mx3 ├── dmienergy-vardmi.mx3 ├── dmienergy.mx3 ├── dmiholes.mx3 ├── dmipbc.mx3 ├── edens.mx3 ├── edgeCarryShift.mx3 ├── energy.mif ├── energy.mx3 ├── euler.mx3 ├── exchange.mx3 ├── exchange3d.mx3 ├── exchange3d_dmi.mx3 ├── exchange3dlong.mx3 ├── exchange_inhomo.mif ├── exchange_inhomo.mx3 ├── exchangemask.todo ├── exchcoupling.mx3 ├── fixedlayer.mif ├── fixedlayer.mx3 ├── for.mx3 ├── fprintln.mx3 ├── frame.png ├── framex2.png ├── freelayerthickness.mx3 ├── frozenspins.mx3 ├── frozenspins_region.mx3 ├── functionfromfile.csv ├── functionfromfile.mx3 ├── gammaLL.mx3 ├── geom2d.mx3 ├── hopfindex-hopfion.mx3 ├── hopfindex-uniform.mx3 ├── httpfstest.bash ├── ifelse.mx3 ├── imageshape.mx3 ├── initgeomfromovf.mx3 ├── initgeomfromovf_teapot.ovf ├── inregion.mx3 ├── interexchange.mx3 ├── interexchange2.mx3 ├── io.mx3 ├── isotropicEnergy.mx3 ├── loadfile.mx3 ├── magnetostriction.mx3 ├── make3dgrains.mx3 ├── make3dgrains_shape_edge.mx3 ├── makedefects.todo ├── maskedquantity.mx3 ├── maxangle.mx3 ├── mel-field.mx3 ├── mel-force-dmxdx-dmydx.mx3 ├── mel-force-dmxdx-dmzdx.mx3 ├── mel-force-dmydy-dmxdy.mx3 ├── mel-force-dmydy-dmzdy.mx3 ├── mel-force-dmzdz-dmxdz.mx3 ├── mel-force-dmzdz-dmydz.mx3 ├── memleak.mx3 ├── mfm.mx3 ├── mfm_sizes.mx3 ├── minimizer-stress.mx3 ├── minimizer.mx3 ├── msatzero.mx3 ├── nodemagspins.mx3 ├── openbc.mx3 ├── outputformat.mx3 ├── pbc1.mx3 ├── pbc2.mustfail ├── quantities.mx3 ├── racetest.bash ├── randregions.todo ├── redefregion.mx3 ├── reduced.todo ├── regions.mx3 ├── regions2.todo ├── regionsload.mx3 ├── regression001.mx3 ├── regression002.mx3 ├── regression003.mx3 ├── regression006.mx3 ├── regression007.mx3 ├── regression008.todo ├── regression009.mx3 ├── regression010.mx3 ├── regression011.mx3 ├── regression013.mx3 ├── regression015.mx3 ├── regression016.mx3 ├── regression017.mx3 ├── regression018.mx3 ├── relax-stress.mx3 ├── repeat.mx3 ├── resize.mx3 ├── rk4.mx3 ├── rk4temperature.mx3 ├── rk56.mx3 ├── rkky.mx3 ├── rmsurfacecharge.mx3 ├── roughness.mx3 ├── run.bash ├── run.ps1 ├── runningaverage.mx3 ├── runwhile.mx3 ├── savefile.mx3 ├── shifted.go ├── shiftgeom.mx3 ├── shiftgeom.todo ├── shiftgrains.mx3 ├── slice.mx3 ├── smoothdemag.mx3 ├── smoothgeom.mx3 ├── snapshot.mx3 ├── source.todo ├── sourcetest ├── sp4_angles.mx3 ├── standardproblem4-3d-minimize.mx3 ├── standardproblem4-3d.mx3 ├── standardproblem4.go ├── standardproblem4.mx3 ├── standardproblem4_rk56.mx3 ├── standardproblem4b.mx3 ├── standardproblem5.mx3 ├── standardproblem5a.mx3 ├── std5b.mif ├── std5b.mx3 ├── std5c.mx3 ├── std5c3d.mx3 ├── steppercache.mx3 ├── table.mx3 ├── tempminimize.mx3 ├── temprelax.mx3 ├── testdata │ ├── binary4.dump │ ├── binary4.ovf │ ├── binary8.ovf │ ├── m2.dump │ ├── mask.png │ ├── movf2.ovf │ ├── oommf_ovf1_binary4.omf │ ├── oommf_ovf1_binary8.omf │ ├── oommf_ovf1_text.omf │ ├── randommag4x4x1.ovf │ ├── regions.ovf │ └── scalarovf2.ovf ├── thermometer.go ├── timedep.mx3 ├── timedep3.mx3 ├── timedep3Region.mx3 ├── timedepRegion.mx3 ├── timedepRegion2.mx3 ├── topologicalcharge-skyrmion.mx3 ├── topologicalcharge-uniform.mx3 ├── topologicalcharge-vortex.mx3 ├── topologicalchargelattice-skyrmion.mx3 ├── topologicalchargelattice-uniform.mx3 ├── topologicalchargelattice-vortex.mx3 ├── uniaxial_full.mx3 ├── uniaxialanisotropy-minimize.mx3 ├── uniaxialanisotropy.mif ├── uniaxialanisotropy.mx3 ├── vector.mx3 ├── zeemanenergy.mx3 └── zhangliPBC.mx3 ├── timer ├── Makefile └── timer.go └── util ├── Makefile ├── atom.go ├── format.go ├── log.go └── util.go /.github/ISSUE_TEMPLATE/1_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/.github/ISSUE_TEMPLATE/1_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/README.md -------------------------------------------------------------------------------- /bench/bench.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/bench/bench.mx3 -------------------------------------------------------------------------------- /bench/gpus.gplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/bench/gpus.gplot -------------------------------------------------------------------------------- /bench/gpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/bench/gpus.txt -------------------------------------------------------------------------------- /bench/oommf4M.txt: -------------------------------------------------------------------------------- 1 | 2048 3 35 2 | 3 | -------------------------------------------------------------------------------- /cmd/gccgorun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/gccgorun -------------------------------------------------------------------------------- /cmd/mumax3-convert/.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | mumax3-convert 3 | -------------------------------------------------------------------------------- /cmd/mumax3-convert/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /cmd/mumax3-convert/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/csv.go -------------------------------------------------------------------------------- /cmd/mumax3-convert/gnuplot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/gnuplot.go -------------------------------------------------------------------------------- /cmd/mumax3-convert/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/json.go -------------------------------------------------------------------------------- /cmd/mumax3-convert/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/main.go -------------------------------------------------------------------------------- /cmd/mumax3-convert/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/normalize.go -------------------------------------------------------------------------------- /cmd/mumax3-convert/numpy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/numpy.go -------------------------------------------------------------------------------- /cmd/mumax3-convert/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/resize.go -------------------------------------------------------------------------------- /cmd/mumax3-convert/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/tasks.go -------------------------------------------------------------------------------- /cmd/mumax3-convert/vtk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-convert/vtk.go -------------------------------------------------------------------------------- /cmd/mumax3-httpfsd/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install 3 | -------------------------------------------------------------------------------- /cmd/mumax3-httpfsd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-httpfsd/main.go -------------------------------------------------------------------------------- /cmd/mumax3-plot/.gitignore: -------------------------------------------------------------------------------- 1 | mumax3-plot 2 | -------------------------------------------------------------------------------- /cmd/mumax3-plot/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /cmd/mumax3-plot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-plot/main.go -------------------------------------------------------------------------------- /cmd/mumax3-script/.gitignore: -------------------------------------------------------------------------------- 1 | mumax3-script 2 | -------------------------------------------------------------------------------- /cmd/mumax3-script/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /cmd/mumax3-script/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-script/main.go -------------------------------------------------------------------------------- /cmd/mumax3-script/mumax3-int: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | rlwrap -m -S '> ' mumax3-script 3 | -------------------------------------------------------------------------------- /cmd/mumax3-server/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install 3 | -------------------------------------------------------------------------------- /cmd/mumax3-server/compute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/compute.go -------------------------------------------------------------------------------- /cmd/mumax3-server/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/doc.go -------------------------------------------------------------------------------- /cmd/mumax3-server/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/job.go -------------------------------------------------------------------------------- /cmd/mumax3-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/main.go -------------------------------------------------------------------------------- /cmd/mumax3-server/peers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/peers.go -------------------------------------------------------------------------------- /cmd/mumax3-server/que.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/que.go -------------------------------------------------------------------------------- /cmd/mumax3-server/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/rpc.go -------------------------------------------------------------------------------- /cmd/mumax3-server/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/status.go -------------------------------------------------------------------------------- /cmd/mumax3-server/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/user.go -------------------------------------------------------------------------------- /cmd/mumax3-server/utitl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/utitl.go -------------------------------------------------------------------------------- /cmd/mumax3-server/watchdog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3-server/watchdog.go -------------------------------------------------------------------------------- /cmd/mumax3/.gitignore: -------------------------------------------------------------------------------- 1 | mumax3 2 | -------------------------------------------------------------------------------- /cmd/mumax3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3/Makefile -------------------------------------------------------------------------------- /cmd/mumax3/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3/browser.go -------------------------------------------------------------------------------- /cmd/mumax3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3/main.go -------------------------------------------------------------------------------- /cmd/mumax3/mumax3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3/mumax3.sh -------------------------------------------------------------------------------- /cmd/mumax3/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3/queue.go -------------------------------------------------------------------------------- /cmd/mumax3/vet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cmd/mumax3/vet.go -------------------------------------------------------------------------------- /cuda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/.gitignore -------------------------------------------------------------------------------- /cuda/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/Makefile -------------------------------------------------------------------------------- /cuda/alloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/alloc.go -------------------------------------------------------------------------------- /cuda/amul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/amul.h -------------------------------------------------------------------------------- /cuda/angles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/angles.go -------------------------------------------------------------------------------- /cuda/anisotropy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/anisotropy.go -------------------------------------------------------------------------------- /cuda/atomicf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/atomicf.h -------------------------------------------------------------------------------- /cuda/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/buffer.go -------------------------------------------------------------------------------- /cuda/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/buffer_test.go -------------------------------------------------------------------------------- /cuda/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/bytes.go -------------------------------------------------------------------------------- /cuda/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/constants.h -------------------------------------------------------------------------------- /cuda/conv_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/conv_common.go -------------------------------------------------------------------------------- /cuda/conv_copypad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/conv_copypad.go -------------------------------------------------------------------------------- /cuda/conv_demag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/conv_demag.go -------------------------------------------------------------------------------- /cuda/conv_kernmul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/conv_kernmul.go -------------------------------------------------------------------------------- /cuda/conv_mfm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/conv_mfm.go -------------------------------------------------------------------------------- /cuda/conv_selftest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/conv_selftest.go -------------------------------------------------------------------------------- /cuda/copypadmul2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/copypadmul2.cu -------------------------------------------------------------------------------- /cuda/copypadmul2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/copypadmul2_wrapper.go -------------------------------------------------------------------------------- /cuda/copyunpad.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/copyunpad.cu -------------------------------------------------------------------------------- /cuda/copyunpad_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/copyunpad_wrapper.go -------------------------------------------------------------------------------- /cuda/crop.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/crop.cu -------------------------------------------------------------------------------- /cuda/crop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/crop.go -------------------------------------------------------------------------------- /cuda/crop_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/crop_wrapper.go -------------------------------------------------------------------------------- /cuda/crossproduct.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/crossproduct.cu -------------------------------------------------------------------------------- /cuda/crossproduct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/crossproduct.go -------------------------------------------------------------------------------- /cuda/crossproduct_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/crossproduct_wrapper.go -------------------------------------------------------------------------------- /cuda/cu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/Makefile -------------------------------------------------------------------------------- /cuda/cu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/README -------------------------------------------------------------------------------- /cuda/cu/cgoflags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/cgoflags.go -------------------------------------------------------------------------------- /cuda/cu/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/context.go -------------------------------------------------------------------------------- /cuda/cu/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/context_test.go -------------------------------------------------------------------------------- /cuda/cu/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/device.go -------------------------------------------------------------------------------- /cuda/cu/device_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/device_test.go -------------------------------------------------------------------------------- /cuda/cu/dim3.go: -------------------------------------------------------------------------------- 1 | package cu 2 | 3 | type Dim3 struct { 4 | X, Y, Z int 5 | } 6 | -------------------------------------------------------------------------------- /cuda/cu/doc.go: -------------------------------------------------------------------------------- 1 | // Go bindings for the CUDA driver API. 2 | package cu 3 | -------------------------------------------------------------------------------- /cuda/cu/execution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/execution.go -------------------------------------------------------------------------------- /cuda/cu/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/function.go -------------------------------------------------------------------------------- /cuda/cu/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/init.go -------------------------------------------------------------------------------- /cuda/cu/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/init_test.go -------------------------------------------------------------------------------- /cuda/cu/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/memory.go -------------------------------------------------------------------------------- /cuda/cu/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/memory_test.go -------------------------------------------------------------------------------- /cuda/cu/memset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/memset.go -------------------------------------------------------------------------------- /cuda/cu/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/module.go -------------------------------------------------------------------------------- /cuda/cu/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/module_test.go -------------------------------------------------------------------------------- /cuda/cu/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/peer.go -------------------------------------------------------------------------------- /cuda/cu/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/result.go -------------------------------------------------------------------------------- /cuda/cu/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/stream.go -------------------------------------------------------------------------------- /cuda/cu/testdata/testmodule.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/testdata/testmodule.cu -------------------------------------------------------------------------------- /cuda/cu/testdata/testmodule.ptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/testdata/testmodule.ptx -------------------------------------------------------------------------------- /cuda/cu/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/version.go -------------------------------------------------------------------------------- /cuda/cu/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cu/version_test.go -------------------------------------------------------------------------------- /cuda/cubicanisotropy2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cubicanisotropy2.cu -------------------------------------------------------------------------------- /cuda/cubicanisotropy2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cubicanisotropy2_wrapper.go -------------------------------------------------------------------------------- /cuda/cuda2go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cuda2go.go -------------------------------------------------------------------------------- /cuda/cufft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/Makefile -------------------------------------------------------------------------------- /cuda/cufft/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/README -------------------------------------------------------------------------------- /cuda/cufft/cgoflags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/cgoflags.go -------------------------------------------------------------------------------- /cuda/cufft/doc.go: -------------------------------------------------------------------------------- 1 | // Go bindings for the CUDA CUFFT API. 2 | package cufft 3 | -------------------------------------------------------------------------------- /cuda/cufft/fft_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/fft_test.go -------------------------------------------------------------------------------- /cuda/cufft/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/init_test.go -------------------------------------------------------------------------------- /cuda/cufft/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/mode.go -------------------------------------------------------------------------------- /cuda/cufft/plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/plan.go -------------------------------------------------------------------------------- /cuda/cufft/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/result.go -------------------------------------------------------------------------------- /cuda/cufft/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/cufft/type.go -------------------------------------------------------------------------------- /cuda/curand/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/curand/Makefile -------------------------------------------------------------------------------- /cuda/curand/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/curand/README -------------------------------------------------------------------------------- /cuda/curand/cgoflags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/curand/cgoflags.go -------------------------------------------------------------------------------- /cuda/curand/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/curand/generator.go -------------------------------------------------------------------------------- /cuda/curand/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/curand/status.go -------------------------------------------------------------------------------- /cuda/div.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/div.cu -------------------------------------------------------------------------------- /cuda/div_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/div_wrapper.go -------------------------------------------------------------------------------- /cuda/dmi.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dmi.cu -------------------------------------------------------------------------------- /cuda/dmi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dmi.go -------------------------------------------------------------------------------- /cuda/dmi_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dmi_wrapper.go -------------------------------------------------------------------------------- /cuda/dmibulk.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dmibulk.cu -------------------------------------------------------------------------------- /cuda/dmibulk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dmibulk.go -------------------------------------------------------------------------------- /cuda/dmibulk_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dmibulk_wrapper.go -------------------------------------------------------------------------------- /cuda/dotproduct.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dotproduct.cu -------------------------------------------------------------------------------- /cuda/dotproduct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dotproduct.go -------------------------------------------------------------------------------- /cuda/dotproduct_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/dotproduct_wrapper.go -------------------------------------------------------------------------------- /cuda/exchange.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/exchange.cu -------------------------------------------------------------------------------- /cuda/exchange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/exchange.go -------------------------------------------------------------------------------- /cuda/exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/exchange.h -------------------------------------------------------------------------------- /cuda/exchange_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/exchange_wrapper.go -------------------------------------------------------------------------------- /cuda/exchangedecode.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/exchangedecode.cu -------------------------------------------------------------------------------- /cuda/exchangedecode_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/exchangedecode_wrapper.go -------------------------------------------------------------------------------- /cuda/fatbin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/fatbin.go -------------------------------------------------------------------------------- /cuda/fft3dc2r.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/fft3dc2r.go -------------------------------------------------------------------------------- /cuda/fft3dr2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/fft3dr2c.go -------------------------------------------------------------------------------- /cuda/fftplan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/fftplan.go -------------------------------------------------------------------------------- /cuda/float3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/float3.h -------------------------------------------------------------------------------- /cuda/hopf-emergentmagneticfield-solidangle.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopf-emergentmagneticfield-solidangle.cu -------------------------------------------------------------------------------- /cuda/hopf-emergentmagneticfield-solidangle_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopf-emergentmagneticfield-solidangle_wrapper.go -------------------------------------------------------------------------------- /cuda/hopf-emergentmagneticfieldfivepoint.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopf-emergentmagneticfieldfivepoint.cu -------------------------------------------------------------------------------- /cuda/hopf-emergentmagneticfieldfivepoint_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopf-emergentmagneticfieldfivepoint_wrapper.go -------------------------------------------------------------------------------- /cuda/hopf-emergentmagneticfieldtwopoint.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopf-emergentmagneticfieldtwopoint.cu -------------------------------------------------------------------------------- /cuda/hopf-emergentmagneticfieldtwopoint_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopf-emergentmagneticfieldtwopoint_wrapper.go -------------------------------------------------------------------------------- /cuda/hopf-vectorpotential.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopf-vectorpotential.cu -------------------------------------------------------------------------------- /cuda/hopf-vectorpotential_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopf-vectorpotential_wrapper.go -------------------------------------------------------------------------------- /cuda/hopfindex-five-point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-five-point.go -------------------------------------------------------------------------------- /cuda/hopfindex-solidangle-fourier-field.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-solidangle-fourier-field.cu -------------------------------------------------------------------------------- /cuda/hopfindex-solidangle-fourier-field_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-solidangle-fourier-field_wrapper.go -------------------------------------------------------------------------------- /cuda/hopfindex-solidangle-fourier-scale.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-solidangle-fourier-scale.cu -------------------------------------------------------------------------------- /cuda/hopfindex-solidangle-fourier-scale_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-solidangle-fourier-scale_wrapper.go -------------------------------------------------------------------------------- /cuda/hopfindex-solidangle-fourier-summand.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-solidangle-fourier-summand.cu -------------------------------------------------------------------------------- /cuda/hopfindex-solidangle-fourier-summand_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-solidangle-fourier-summand_wrapper.go -------------------------------------------------------------------------------- /cuda/hopfindex-solidangle-fourier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-solidangle-fourier.go -------------------------------------------------------------------------------- /cuda/hopfindex-solidangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-solidangle.go -------------------------------------------------------------------------------- /cuda/hopfindex-two-point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/hopfindex-two-point.go -------------------------------------------------------------------------------- /cuda/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/init.go -------------------------------------------------------------------------------- /cuda/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/init_test.go -------------------------------------------------------------------------------- /cuda/kernmulc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/kernmulc.cu -------------------------------------------------------------------------------- /cuda/kernmulc_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/kernmulc_wrapper.go -------------------------------------------------------------------------------- /cuda/kernmulrsymm2dxy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/kernmulrsymm2dxy.cu -------------------------------------------------------------------------------- /cuda/kernmulrsymm2dxy_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/kernmulrsymm2dxy_wrapper.go -------------------------------------------------------------------------------- /cuda/kernmulrsymm2dz.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/kernmulrsymm2dz.cu -------------------------------------------------------------------------------- /cuda/kernmulrsymm2dz_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/kernmulrsymm2dz_wrapper.go -------------------------------------------------------------------------------- /cuda/kernmulrsymm3d.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/kernmulrsymm3d.cu -------------------------------------------------------------------------------- /cuda/kernmulrsymm3d_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/kernmulrsymm3d_wrapper.go -------------------------------------------------------------------------------- /cuda/llnoprecess.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/llnoprecess.cu -------------------------------------------------------------------------------- /cuda/llnoprecess_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/llnoprecess_wrapper.go -------------------------------------------------------------------------------- /cuda/lltorque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/lltorque.go -------------------------------------------------------------------------------- /cuda/lltorque2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/lltorque2.cu -------------------------------------------------------------------------------- /cuda/lltorque2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/lltorque2_wrapper.go -------------------------------------------------------------------------------- /cuda/lut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/lut.go -------------------------------------------------------------------------------- /cuda/madd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd.go -------------------------------------------------------------------------------- /cuda/madd2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd2.cu -------------------------------------------------------------------------------- /cuda/madd2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd2_wrapper.go -------------------------------------------------------------------------------- /cuda/madd3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd3.cu -------------------------------------------------------------------------------- /cuda/madd3_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd3_wrapper.go -------------------------------------------------------------------------------- /cuda/madd4.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd4.cu -------------------------------------------------------------------------------- /cuda/madd4_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd4_wrapper.go -------------------------------------------------------------------------------- /cuda/madd5.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd5.cu -------------------------------------------------------------------------------- /cuda/madd5_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd5_wrapper.go -------------------------------------------------------------------------------- /cuda/madd6.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd6.cu -------------------------------------------------------------------------------- /cuda/madd6_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd6_wrapper.go -------------------------------------------------------------------------------- /cuda/madd7.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd7.cu -------------------------------------------------------------------------------- /cuda/madd7_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/madd7_wrapper.go -------------------------------------------------------------------------------- /cuda/magnetoelastic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/magnetoelastic.go -------------------------------------------------------------------------------- /cuda/magnetoelasticfield.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/magnetoelasticfield.cu -------------------------------------------------------------------------------- /cuda/magnetoelasticfield_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/magnetoelasticfield_wrapper.go -------------------------------------------------------------------------------- /cuda/magnetoelasticforce.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/magnetoelasticforce.cu -------------------------------------------------------------------------------- /cuda/magnetoelasticforce_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/magnetoelasticforce_wrapper.go -------------------------------------------------------------------------------- /cuda/maxangle.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/maxangle.cu -------------------------------------------------------------------------------- /cuda/maxangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/maxangle.go -------------------------------------------------------------------------------- /cuda/maxangle_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/maxangle_wrapper.go -------------------------------------------------------------------------------- /cuda/minimize.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/minimize.cu -------------------------------------------------------------------------------- /cuda/minimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/minimize.go -------------------------------------------------------------------------------- /cuda/minimize_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/minimize_wrapper.go -------------------------------------------------------------------------------- /cuda/mslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/mslice.go -------------------------------------------------------------------------------- /cuda/mul.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/mul.cu -------------------------------------------------------------------------------- /cuda/mul_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/mul_wrapper.go -------------------------------------------------------------------------------- /cuda/normalize.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/normalize.cu -------------------------------------------------------------------------------- /cuda/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/normalize.go -------------------------------------------------------------------------------- /cuda/normalize_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/normalize_wrapper.go -------------------------------------------------------------------------------- /cuda/phi.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/phi.cu -------------------------------------------------------------------------------- /cuda/phi_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/phi_wrapper.go -------------------------------------------------------------------------------- /cuda/reduce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reduce.go -------------------------------------------------------------------------------- /cuda/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reduce.h -------------------------------------------------------------------------------- /cuda/reduce_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reduce_test.go -------------------------------------------------------------------------------- /cuda/reducedot.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducedot.cu -------------------------------------------------------------------------------- /cuda/reducedot_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducedot_wrapper.go -------------------------------------------------------------------------------- /cuda/reducemaxabs.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducemaxabs.cu -------------------------------------------------------------------------------- /cuda/reducemaxabs_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducemaxabs_wrapper.go -------------------------------------------------------------------------------- /cuda/reducemaxdiff.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducemaxdiff.cu -------------------------------------------------------------------------------- /cuda/reducemaxdiff_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducemaxdiff_wrapper.go -------------------------------------------------------------------------------- /cuda/reducemaxvecdiff2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducemaxvecdiff2.cu -------------------------------------------------------------------------------- /cuda/reducemaxvecdiff2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducemaxvecdiff2_wrapper.go -------------------------------------------------------------------------------- /cuda/reducemaxvecnorm2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducemaxvecnorm2.cu -------------------------------------------------------------------------------- /cuda/reducemaxvecnorm2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducemaxvecnorm2_wrapper.go -------------------------------------------------------------------------------- /cuda/reducesum.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducesum.cu -------------------------------------------------------------------------------- /cuda/reducesum_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/reducesum_wrapper.go -------------------------------------------------------------------------------- /cuda/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/region.go -------------------------------------------------------------------------------- /cuda/regionadds.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/regionadds.cu -------------------------------------------------------------------------------- /cuda/regionadds_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/regionadds_wrapper.go -------------------------------------------------------------------------------- /cuda/regionaddv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/regionaddv.cu -------------------------------------------------------------------------------- /cuda/regionaddv_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/regionaddv_wrapper.go -------------------------------------------------------------------------------- /cuda/regiondecode.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/regiondecode.cu -------------------------------------------------------------------------------- /cuda/regiondecode_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/regiondecode_wrapper.go -------------------------------------------------------------------------------- /cuda/regionselect.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/regionselect.cu -------------------------------------------------------------------------------- /cuda/regionselect_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/regionselect_wrapper.go -------------------------------------------------------------------------------- /cuda/resize.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/resize.cu -------------------------------------------------------------------------------- /cuda/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/resize.go -------------------------------------------------------------------------------- /cuda/resize_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/resize_wrapper.go -------------------------------------------------------------------------------- /cuda/shift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shift.go -------------------------------------------------------------------------------- /cuda/shiftbytes.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftbytes.cu -------------------------------------------------------------------------------- /cuda/shiftbytes_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftbytes_wrapper.go -------------------------------------------------------------------------------- /cuda/shiftbytesy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftbytesy.cu -------------------------------------------------------------------------------- /cuda/shiftbytesy_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftbytesy_wrapper.go -------------------------------------------------------------------------------- /cuda/shiftedgecarryx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftedgecarryx.cu -------------------------------------------------------------------------------- /cuda/shiftedgecarryx_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftedgecarryx_wrapper.go -------------------------------------------------------------------------------- /cuda/shiftedgecarryy.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftedgecarryy.cu -------------------------------------------------------------------------------- /cuda/shiftedgecarryy_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftedgecarryy_wrapper.go -------------------------------------------------------------------------------- /cuda/shiftx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftx.cu -------------------------------------------------------------------------------- /cuda/shiftx_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftx_wrapper.go -------------------------------------------------------------------------------- /cuda/shifty.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shifty.cu -------------------------------------------------------------------------------- /cuda/shifty_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shifty_wrapper.go -------------------------------------------------------------------------------- /cuda/shiftz.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftz.cu -------------------------------------------------------------------------------- /cuda/shiftz_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/shiftz_wrapper.go -------------------------------------------------------------------------------- /cuda/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/slice.go -------------------------------------------------------------------------------- /cuda/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/slice_test.go -------------------------------------------------------------------------------- /cuda/slonczewski.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/slonczewski.go -------------------------------------------------------------------------------- /cuda/slonczewski2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/slonczewski2.cu -------------------------------------------------------------------------------- /cuda/slonczewski2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/slonczewski2_wrapper.go -------------------------------------------------------------------------------- /cuda/stencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/stencil.h -------------------------------------------------------------------------------- /cuda/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/sum.h -------------------------------------------------------------------------------- /cuda/temperature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/temperature.go -------------------------------------------------------------------------------- /cuda/temperature2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/temperature2.cu -------------------------------------------------------------------------------- /cuda/temperature2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/temperature2_wrapper.go -------------------------------------------------------------------------------- /cuda/theta.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/theta.cu -------------------------------------------------------------------------------- /cuda/theta_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/theta_wrapper.go -------------------------------------------------------------------------------- /cuda/topologicalcharge.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/topologicalcharge.cu -------------------------------------------------------------------------------- /cuda/topologicalcharge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/topologicalcharge.go -------------------------------------------------------------------------------- /cuda/topologicalcharge_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/topologicalcharge_wrapper.go -------------------------------------------------------------------------------- /cuda/topologicalchargelattice.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/topologicalchargelattice.cu -------------------------------------------------------------------------------- /cuda/topologicalchargelattice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/topologicalchargelattice.go -------------------------------------------------------------------------------- /cuda/topologicalchargelattice_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/topologicalchargelattice_wrapper.go -------------------------------------------------------------------------------- /cuda/uniaxialanisotropy2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/uniaxialanisotropy2.cu -------------------------------------------------------------------------------- /cuda/uniaxialanisotropy2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/uniaxialanisotropy2_wrapper.go -------------------------------------------------------------------------------- /cuda/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/util.go -------------------------------------------------------------------------------- /cuda/zeromask.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/zeromask.cu -------------------------------------------------------------------------------- /cuda/zeromask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/zeromask.go -------------------------------------------------------------------------------- /cuda/zeromask_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/zeromask_wrapper.go -------------------------------------------------------------------------------- /cuda/zeromaskinv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/zeromaskinv.cu -------------------------------------------------------------------------------- /cuda/zeromaskinv_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/zeromaskinv_wrapper.go -------------------------------------------------------------------------------- /cuda/zhangli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/zhangli.go -------------------------------------------------------------------------------- /cuda/zhangli2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/zhangli2.cu -------------------------------------------------------------------------------- /cuda/zhangli2_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/cuda/zhangli2_wrapper.go -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /data/crop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/crop.go -------------------------------------------------------------------------------- /data/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/doc.go -------------------------------------------------------------------------------- /data/mesh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/mesh.go -------------------------------------------------------------------------------- /data/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/meta.go -------------------------------------------------------------------------------- /data/resample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/resample.go -------------------------------------------------------------------------------- /data/reshape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/reshape.go -------------------------------------------------------------------------------- /data/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/slice.go -------------------------------------------------------------------------------- /data/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/slice_test.go -------------------------------------------------------------------------------- /data/vector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/data/vector.go -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /deploy/deploy_linux.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/deploy/deploy_linux.bash -------------------------------------------------------------------------------- /deploy/deploy_windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/deploy/deploy_windows.ps1 -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | doc -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/README -------------------------------------------------------------------------------- /doc/apigen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/apigen.go -------------------------------------------------------------------------------- /doc/gpus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/gpus.go -------------------------------------------------------------------------------- /doc/make.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/make.go -------------------------------------------------------------------------------- /doc/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/mask.png -------------------------------------------------------------------------------- /doc/myfile.ovf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/myfile.ovf -------------------------------------------------------------------------------- /doc/static/api310.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/api310.html -------------------------------------------------------------------------------- /doc/static/api39c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/api39c.html -------------------------------------------------------------------------------- /doc/static/download310.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/download310.html -------------------------------------------------------------------------------- /doc/static/gpus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/gpus.svg -------------------------------------------------------------------------------- /doc/static/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/header.js -------------------------------------------------------------------------------- /doc/static/mfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/mfm.svg -------------------------------------------------------------------------------- /doc/static/nimble-cubes128-xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/nimble-cubes128-xmas.png -------------------------------------------------------------------------------- /doc/static/nimble-cubes128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/nimble-cubes128.png -------------------------------------------------------------------------------- /doc/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/style.css -------------------------------------------------------------------------------- /doc/static/web1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/web1.png -------------------------------------------------------------------------------- /doc/static/web2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/static/web2.png -------------------------------------------------------------------------------- /doc/templates/api-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/templates/api-template.html -------------------------------------------------------------------------------- /doc/templates/download-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/templates/download-template.html -------------------------------------------------------------------------------- /doc/templates/examples-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/templates/examples-template.html -------------------------------------------------------------------------------- /doc/templates/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/templates/head.html -------------------------------------------------------------------------------- /doc/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/templates/header.html -------------------------------------------------------------------------------- /doc/templates/headerpage-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/templates/headerpage-template.html -------------------------------------------------------------------------------- /doc/templates/index-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/templates/index-template.html -------------------------------------------------------------------------------- /doc/tex/.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.pdf 3 | -------------------------------------------------------------------------------- /doc/tex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/tex/Makefile -------------------------------------------------------------------------------- /doc/tex/mumax3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/doc/tex/mumax3.tex -------------------------------------------------------------------------------- /draw/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /draw/arrows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/draw/arrows.go -------------------------------------------------------------------------------- /draw/colorscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/draw/colorscale.go -------------------------------------------------------------------------------- /draw/doc.go: -------------------------------------------------------------------------------- 1 | // 2D rendering of data slices. 2 | package draw 3 | -------------------------------------------------------------------------------- /draw/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/draw/encode.go -------------------------------------------------------------------------------- /draw/hslscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/draw/hslscale.go -------------------------------------------------------------------------------- /draw/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/draw/image.go -------------------------------------------------------------------------------- /draw/svg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/draw/svg.go -------------------------------------------------------------------------------- /dump/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /dump/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/dump/read.go -------------------------------------------------------------------------------- /dump/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/dump/write.go -------------------------------------------------------------------------------- /engine/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /engine/anisotropy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/anisotropy.go -------------------------------------------------------------------------------- /engine/asyncio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/asyncio.go -------------------------------------------------------------------------------- /engine/autosave.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/autosave.go -------------------------------------------------------------------------------- /engine/average.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/average.go -------------------------------------------------------------------------------- /engine/backwardeuler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/backwardeuler.go -------------------------------------------------------------------------------- /engine/bib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/bib.go -------------------------------------------------------------------------------- /engine/comp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/comp.go -------------------------------------------------------------------------------- /engine/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/config.go -------------------------------------------------------------------------------- /engine/crop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/crop.go -------------------------------------------------------------------------------- /engine/customfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/customfield.go -------------------------------------------------------------------------------- /engine/demag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/demag.go -------------------------------------------------------------------------------- /engine/effectivefield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/effectivefield.go -------------------------------------------------------------------------------- /engine/energy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/energy.go -------------------------------------------------------------------------------- /engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/engine.go -------------------------------------------------------------------------------- /engine/euler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/euler.go -------------------------------------------------------------------------------- /engine/exchange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/exchange.go -------------------------------------------------------------------------------- /engine/excitation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/excitation.go -------------------------------------------------------------------------------- /engine/ext_angles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_angles.go -------------------------------------------------------------------------------- /engine/ext_bubblepos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_bubblepos.go -------------------------------------------------------------------------------- /engine/ext_centerbubble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_centerbubble.go -------------------------------------------------------------------------------- /engine/ext_centerwall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_centerwall.go -------------------------------------------------------------------------------- /engine/ext_corepos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_corepos.go -------------------------------------------------------------------------------- /engine/ext_dwtilt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_dwtilt.go -------------------------------------------------------------------------------- /engine/ext_hopfindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_hopfindex.go -------------------------------------------------------------------------------- /engine/ext_magnetoelastic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_magnetoelastic.go -------------------------------------------------------------------------------- /engine/ext_make3dgrains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_make3dgrains.go -------------------------------------------------------------------------------- /engine/ext_makegrains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_makegrains.go -------------------------------------------------------------------------------- /engine/ext_rmsurfacecharge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_rmsurfacecharge.go -------------------------------------------------------------------------------- /engine/ext_topologicalcharge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_topologicalcharge.go -------------------------------------------------------------------------------- /engine/ext_topologicalchargelattice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/ext_topologicalchargelattice.go -------------------------------------------------------------------------------- /engine/functionfromfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/functionfromfile.go -------------------------------------------------------------------------------- /engine/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/geom.go -------------------------------------------------------------------------------- /engine/gofiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/gofiles.go -------------------------------------------------------------------------------- /engine/gui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/gui.go -------------------------------------------------------------------------------- /engine/heun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/heun.go -------------------------------------------------------------------------------- /engine/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/html.go -------------------------------------------------------------------------------- /engine/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/log.go -------------------------------------------------------------------------------- /engine/lutdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/lutdata.go -------------------------------------------------------------------------------- /engine/magnetization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/magnetization.go -------------------------------------------------------------------------------- /engine/maxangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/maxangle.go -------------------------------------------------------------------------------- /engine/mesh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/mesh.go -------------------------------------------------------------------------------- /engine/mfm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/mfm.go -------------------------------------------------------------------------------- /engine/minimizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/minimizer.go -------------------------------------------------------------------------------- /engine/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/number.go -------------------------------------------------------------------------------- /engine/od.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/od.go -------------------------------------------------------------------------------- /engine/oneregion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/oneregion.go -------------------------------------------------------------------------------- /engine/outputquantities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/outputquantities.go -------------------------------------------------------------------------------- /engine/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/parameter.go -------------------------------------------------------------------------------- /engine/plot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/plot.go -------------------------------------------------------------------------------- /engine/quantity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/quantity.go -------------------------------------------------------------------------------- /engine/regions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/regions.go -------------------------------------------------------------------------------- /engine/relax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/relax.go -------------------------------------------------------------------------------- /engine/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/render.go -------------------------------------------------------------------------------- /engine/rk23.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/rk23.go -------------------------------------------------------------------------------- /engine/rk4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/rk4.go -------------------------------------------------------------------------------- /engine/rk45dp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/rk45dp.go -------------------------------------------------------------------------------- /engine/rk56.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/rk56.go -------------------------------------------------------------------------------- /engine/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/run.go -------------------------------------------------------------------------------- /engine/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/save.go -------------------------------------------------------------------------------- /engine/scalar_excitation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/scalar_excitation.go -------------------------------------------------------------------------------- /engine/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/script.go -------------------------------------------------------------------------------- /engine/shape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/shape.go -------------------------------------------------------------------------------- /engine/shift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/shift.go -------------------------------------------------------------------------------- /engine/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/table.go -------------------------------------------------------------------------------- /engine/temperature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/temperature.go -------------------------------------------------------------------------------- /engine/torque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/torque.go -------------------------------------------------------------------------------- /engine/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/unsafe.go -------------------------------------------------------------------------------- /engine/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/util.go -------------------------------------------------------------------------------- /engine/zeeman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/engine/zeeman.go -------------------------------------------------------------------------------- /freetype/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/freetype/AUTHORS -------------------------------------------------------------------------------- /freetype/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/freetype/CONTRIBUTORS -------------------------------------------------------------------------------- /freetype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/freetype/LICENSE -------------------------------------------------------------------------------- /freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/freetype/README -------------------------------------------------------------------------------- /freetype/raster/geom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/freetype/raster/geom.go -------------------------------------------------------------------------------- /freetype/raster/paint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/freetype/raster/paint.go -------------------------------------------------------------------------------- /freetype/raster/raster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/freetype/raster/raster.go -------------------------------------------------------------------------------- /freetype/raster/stroke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/freetype/raster/stroke.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mumax/3 2 | 3 | go 1.22.4 4 | -------------------------------------------------------------------------------- /gui/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install 3 | -------------------------------------------------------------------------------- /gui/button.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/button.go -------------------------------------------------------------------------------- /gui/checkbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/checkbox.go -------------------------------------------------------------------------------- /gui/clibox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/clibox.go -------------------------------------------------------------------------------- /gui/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/console.go -------------------------------------------------------------------------------- /gui/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/data.go -------------------------------------------------------------------------------- /gui/datamodels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/datamodels.go -------------------------------------------------------------------------------- /gui/el.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/el.go -------------------------------------------------------------------------------- /gui/element.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/element.go -------------------------------------------------------------------------------- /gui/img.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/img.go -------------------------------------------------------------------------------- /gui/js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/js.go -------------------------------------------------------------------------------- /gui/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/meter.go -------------------------------------------------------------------------------- /gui/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/number.go -------------------------------------------------------------------------------- /gui/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/page.go -------------------------------------------------------------------------------- /gui/page_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/page_test.go -------------------------------------------------------------------------------- /gui/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/progress.go -------------------------------------------------------------------------------- /gui/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/range.go -------------------------------------------------------------------------------- /gui/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/select.go -------------------------------------------------------------------------------- /gui/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/span.go -------------------------------------------------------------------------------- /gui/textbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/textbox.go -------------------------------------------------------------------------------- /gui/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/gui/util.go -------------------------------------------------------------------------------- /httpfs/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install 3 | -------------------------------------------------------------------------------- /httpfs/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/httpfs/client.go -------------------------------------------------------------------------------- /httpfs/httpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/httpfs/httpfs.go -------------------------------------------------------------------------------- /httpfs/httpfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/httpfs/httpfs_test.go -------------------------------------------------------------------------------- /httpfs/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/httpfs/reader.go -------------------------------------------------------------------------------- /httpfs/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/httpfs/server.go -------------------------------------------------------------------------------- /mag/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /mag/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/mag/constants.go -------------------------------------------------------------------------------- /mag/demagkernel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/mag/demagkernel.go -------------------------------------------------------------------------------- /mag/mfmkernel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/mag/mfmkernel.go -------------------------------------------------------------------------------- /oommf/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /oommf/oommf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/oommf/oommf.go -------------------------------------------------------------------------------- /oommf/ovf1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/oommf/ovf1.go -------------------------------------------------------------------------------- /oommf/ovf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/oommf/ovf2.go -------------------------------------------------------------------------------- /oommf/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/oommf/util.go -------------------------------------------------------------------------------- /post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/post-commit -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/pre-commit -------------------------------------------------------------------------------- /script/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /script/assignstmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/assignstmt.go -------------------------------------------------------------------------------- /script/binaryexpr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/binaryexpr.go -------------------------------------------------------------------------------- /script/blockstmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/blockstmt.go -------------------------------------------------------------------------------- /script/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/call.go -------------------------------------------------------------------------------- /script/child.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/child.go -------------------------------------------------------------------------------- /script/compile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/compile.go -------------------------------------------------------------------------------- /script/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/const.go -------------------------------------------------------------------------------- /script/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/error.go -------------------------------------------------------------------------------- /script/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/exec.go -------------------------------------------------------------------------------- /script/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/expr.go -------------------------------------------------------------------------------- /script/for.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/for.go -------------------------------------------------------------------------------- /script/funcif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/funcif.go -------------------------------------------------------------------------------- /script/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/function.go -------------------------------------------------------------------------------- /script/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/if.go -------------------------------------------------------------------------------- /script/incdecstmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/incdecstmt.go -------------------------------------------------------------------------------- /script/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/index.go -------------------------------------------------------------------------------- /script/lit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/lit.go -------------------------------------------------------------------------------- /script/lvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/lvalue.go -------------------------------------------------------------------------------- /script/ronly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/ronly.go -------------------------------------------------------------------------------- /script/script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/script_test.go -------------------------------------------------------------------------------- /script/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/selector.go -------------------------------------------------------------------------------- /script/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/source.go -------------------------------------------------------------------------------- /script/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/stdlib.go -------------------------------------------------------------------------------- /script/stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/stmt.go -------------------------------------------------------------------------------- /script/test.txt: -------------------------------------------------------------------------------- 1 | a:=1 2 | -------------------------------------------------------------------------------- /script/typeconv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/typeconv.go -------------------------------------------------------------------------------- /script/unaryexpr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/unaryexpr.go -------------------------------------------------------------------------------- /script/world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/script/world.go -------------------------------------------------------------------------------- /svgo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/svgo/LICENSE -------------------------------------------------------------------------------- /svgo/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install 3 | -------------------------------------------------------------------------------- /svgo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/svgo/doc.go -------------------------------------------------------------------------------- /svgo/svg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/svgo/svg.go -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.ovf 3 | *.todo 4 | -------------------------------------------------------------------------------- /test/anisenergy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/anisenergy.mx3 -------------------------------------------------------------------------------- /test/anisenergy2.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/anisenergy2.mx3 -------------------------------------------------------------------------------- /test/anisenergyconservation.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/anisenergyconservation.mx3 -------------------------------------------------------------------------------- /test/anisenergyconservation2.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/anisenergyconservation2.mx3 -------------------------------------------------------------------------------- /test/anisenergyconservation3.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/anisenergyconservation3.mx3 -------------------------------------------------------------------------------- /test/anisenergyconservation4.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/anisenergyconservation4.mx3 -------------------------------------------------------------------------------- /test/antenna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/antenna.go -------------------------------------------------------------------------------- /test/average.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/average.mx3 -------------------------------------------------------------------------------- /test/axes.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/axes.mx3 -------------------------------------------------------------------------------- /test/b_ext_add.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/b_ext_add.mx3 -------------------------------------------------------------------------------- /test/bubblepos.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/bubblepos.mx3 -------------------------------------------------------------------------------- /test/bubbleshiftpos.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/bubbleshiftpos.mx3 -------------------------------------------------------------------------------- /test/bw_euler.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/bw_euler.mx3 -------------------------------------------------------------------------------- /test/centerwall.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/centerwall.mx3 -------------------------------------------------------------------------------- /test/centerwall_layer.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/centerwall_layer.mx3 -------------------------------------------------------------------------------- /test/centerwall_region.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/centerwall_region.mx3 -------------------------------------------------------------------------------- /test/closure.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/closure.mx3 -------------------------------------------------------------------------------- /test/comp.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/comp.mx3 -------------------------------------------------------------------------------- /test/conical.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/conical.mx3 -------------------------------------------------------------------------------- /test/coreposition.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/coreposition.mx3 -------------------------------------------------------------------------------- /test/crop.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/crop.mx3 -------------------------------------------------------------------------------- /test/cubic_full.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/cubic_full.mx3 -------------------------------------------------------------------------------- /test/cubicanisotropy.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/cubicanisotropy.mif -------------------------------------------------------------------------------- /test/cubicanisotropy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/cubicanisotropy.mx3 -------------------------------------------------------------------------------- /test/cubicanisotropy.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/cubicanisotropy.odt -------------------------------------------------------------------------------- /test/custom_anisotropy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/custom_anisotropy.go -------------------------------------------------------------------------------- /test/custom_anisotropy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/custom_anisotropy.mx3 -------------------------------------------------------------------------------- /test/custom_exchange.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/custom_exchange.mx3 -------------------------------------------------------------------------------- /test/custom_std4.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/custom_std4.mx3 -------------------------------------------------------------------------------- /test/demag2D.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demag2D.mx3 -------------------------------------------------------------------------------- /test/demag2D_long.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demag2D_long.mx3 -------------------------------------------------------------------------------- /test/demag2Dpbc.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demag2Dpbc.mx3 -------------------------------------------------------------------------------- /test/demag2Dpbc2.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demag2Dpbc2.mx3 -------------------------------------------------------------------------------- /test/demag3Dfilm.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demag3Dfilm.mx3 -------------------------------------------------------------------------------- /test/demagRegion.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demagRegion.mx3 -------------------------------------------------------------------------------- /test/demagSmall.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demagSmall.mx3 -------------------------------------------------------------------------------- /test/demagSmall3D.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demagSmall3D.mx3 -------------------------------------------------------------------------------- /test/demagcube.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demagcube.mx3 -------------------------------------------------------------------------------- /test/demagodd.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demagodd.mx3 -------------------------------------------------------------------------------- /test/demagrod.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demagrod.mx3 -------------------------------------------------------------------------------- /test/demagrodpbc.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/demagrodpbc.mx3 -------------------------------------------------------------------------------- /test/dindcoupling.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dindcoupling.mx3 -------------------------------------------------------------------------------- /test/dmi.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmi.mx3 -------------------------------------------------------------------------------- /test/dmi3d.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmi3d.mx3 -------------------------------------------------------------------------------- /test/dmiY.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmiY.mx3 -------------------------------------------------------------------------------- /test/dmibc.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmibc.mx3 -------------------------------------------------------------------------------- /test/dmibulk.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmibulk.todo -------------------------------------------------------------------------------- /test/dmibulksymm.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmibulksymm.mx3 -------------------------------------------------------------------------------- /test/dmibulksymm1D.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmibulksymm1D.mx3 -------------------------------------------------------------------------------- /test/dmienergy-vardbulk.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmienergy-vardbulk.mx3 -------------------------------------------------------------------------------- /test/dmienergy-vardmi.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmienergy-vardmi.mx3 -------------------------------------------------------------------------------- /test/dmienergy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmienergy.mx3 -------------------------------------------------------------------------------- /test/dmiholes.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmiholes.mx3 -------------------------------------------------------------------------------- /test/dmipbc.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/dmipbc.mx3 -------------------------------------------------------------------------------- /test/edens.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/edens.mx3 -------------------------------------------------------------------------------- /test/edgeCarryShift.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/edgeCarryShift.mx3 -------------------------------------------------------------------------------- /test/energy.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/energy.mif -------------------------------------------------------------------------------- /test/energy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/energy.mx3 -------------------------------------------------------------------------------- /test/euler.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/euler.mx3 -------------------------------------------------------------------------------- /test/exchange.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/exchange.mx3 -------------------------------------------------------------------------------- /test/exchange3d.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/exchange3d.mx3 -------------------------------------------------------------------------------- /test/exchange3d_dmi.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/exchange3d_dmi.mx3 -------------------------------------------------------------------------------- /test/exchange3dlong.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/exchange3dlong.mx3 -------------------------------------------------------------------------------- /test/exchange_inhomo.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/exchange_inhomo.mif -------------------------------------------------------------------------------- /test/exchange_inhomo.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/exchange_inhomo.mx3 -------------------------------------------------------------------------------- /test/exchangemask.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/exchangemask.todo -------------------------------------------------------------------------------- /test/exchcoupling.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/exchcoupling.mx3 -------------------------------------------------------------------------------- /test/fixedlayer.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/fixedlayer.mif -------------------------------------------------------------------------------- /test/fixedlayer.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/fixedlayer.mx3 -------------------------------------------------------------------------------- /test/for.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/for.mx3 -------------------------------------------------------------------------------- /test/fprintln.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/fprintln.mx3 -------------------------------------------------------------------------------- /test/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/frame.png -------------------------------------------------------------------------------- /test/framex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/framex2.png -------------------------------------------------------------------------------- /test/freelayerthickness.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/freelayerthickness.mx3 -------------------------------------------------------------------------------- /test/frozenspins.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/frozenspins.mx3 -------------------------------------------------------------------------------- /test/frozenspins_region.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/frozenspins_region.mx3 -------------------------------------------------------------------------------- /test/functionfromfile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/functionfromfile.csv -------------------------------------------------------------------------------- /test/functionfromfile.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/functionfromfile.mx3 -------------------------------------------------------------------------------- /test/gammaLL.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/gammaLL.mx3 -------------------------------------------------------------------------------- /test/geom2d.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/geom2d.mx3 -------------------------------------------------------------------------------- /test/hopfindex-hopfion.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/hopfindex-hopfion.mx3 -------------------------------------------------------------------------------- /test/hopfindex-uniform.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/hopfindex-uniform.mx3 -------------------------------------------------------------------------------- /test/httpfstest.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/httpfstest.bash -------------------------------------------------------------------------------- /test/ifelse.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/ifelse.mx3 -------------------------------------------------------------------------------- /test/imageshape.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/imageshape.mx3 -------------------------------------------------------------------------------- /test/initgeomfromovf.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/initgeomfromovf.mx3 -------------------------------------------------------------------------------- /test/initgeomfromovf_teapot.ovf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/initgeomfromovf_teapot.ovf -------------------------------------------------------------------------------- /test/inregion.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/inregion.mx3 -------------------------------------------------------------------------------- /test/interexchange.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/interexchange.mx3 -------------------------------------------------------------------------------- /test/interexchange2.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/interexchange2.mx3 -------------------------------------------------------------------------------- /test/io.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/io.mx3 -------------------------------------------------------------------------------- /test/isotropicEnergy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/isotropicEnergy.mx3 -------------------------------------------------------------------------------- /test/loadfile.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/loadfile.mx3 -------------------------------------------------------------------------------- /test/magnetostriction.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/magnetostriction.mx3 -------------------------------------------------------------------------------- /test/make3dgrains.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/make3dgrains.mx3 -------------------------------------------------------------------------------- /test/make3dgrains_shape_edge.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/make3dgrains_shape_edge.mx3 -------------------------------------------------------------------------------- /test/makedefects.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/makedefects.todo -------------------------------------------------------------------------------- /test/maskedquantity.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/maskedquantity.mx3 -------------------------------------------------------------------------------- /test/maxangle.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/maxangle.mx3 -------------------------------------------------------------------------------- /test/mel-field.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mel-field.mx3 -------------------------------------------------------------------------------- /test/mel-force-dmxdx-dmydx.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mel-force-dmxdx-dmydx.mx3 -------------------------------------------------------------------------------- /test/mel-force-dmxdx-dmzdx.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mel-force-dmxdx-dmzdx.mx3 -------------------------------------------------------------------------------- /test/mel-force-dmydy-dmxdy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mel-force-dmydy-dmxdy.mx3 -------------------------------------------------------------------------------- /test/mel-force-dmydy-dmzdy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mel-force-dmydy-dmzdy.mx3 -------------------------------------------------------------------------------- /test/mel-force-dmzdz-dmxdz.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mel-force-dmzdz-dmxdz.mx3 -------------------------------------------------------------------------------- /test/mel-force-dmzdz-dmydz.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mel-force-dmzdz-dmydz.mx3 -------------------------------------------------------------------------------- /test/memleak.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/memleak.mx3 -------------------------------------------------------------------------------- /test/mfm.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mfm.mx3 -------------------------------------------------------------------------------- /test/mfm_sizes.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/mfm_sizes.mx3 -------------------------------------------------------------------------------- /test/minimizer-stress.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/minimizer-stress.mx3 -------------------------------------------------------------------------------- /test/minimizer.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/minimizer.mx3 -------------------------------------------------------------------------------- /test/msatzero.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/msatzero.mx3 -------------------------------------------------------------------------------- /test/nodemagspins.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/nodemagspins.mx3 -------------------------------------------------------------------------------- /test/openbc.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/openbc.mx3 -------------------------------------------------------------------------------- /test/outputformat.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/outputformat.mx3 -------------------------------------------------------------------------------- /test/pbc1.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/pbc1.mx3 -------------------------------------------------------------------------------- /test/pbc2.mustfail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/pbc2.mustfail -------------------------------------------------------------------------------- /test/quantities.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/quantities.mx3 -------------------------------------------------------------------------------- /test/racetest.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/racetest.bash -------------------------------------------------------------------------------- /test/randregions.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/randregions.todo -------------------------------------------------------------------------------- /test/redefregion.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/redefregion.mx3 -------------------------------------------------------------------------------- /test/reduced.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/reduced.todo -------------------------------------------------------------------------------- /test/regions.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regions.mx3 -------------------------------------------------------------------------------- /test/regions2.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regions2.todo -------------------------------------------------------------------------------- /test/regionsload.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regionsload.mx3 -------------------------------------------------------------------------------- /test/regression001.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression001.mx3 -------------------------------------------------------------------------------- /test/regression002.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression002.mx3 -------------------------------------------------------------------------------- /test/regression003.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression003.mx3 -------------------------------------------------------------------------------- /test/regression006.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression006.mx3 -------------------------------------------------------------------------------- /test/regression007.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression007.mx3 -------------------------------------------------------------------------------- /test/regression008.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression008.todo -------------------------------------------------------------------------------- /test/regression009.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression009.mx3 -------------------------------------------------------------------------------- /test/regression010.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression010.mx3 -------------------------------------------------------------------------------- /test/regression011.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression011.mx3 -------------------------------------------------------------------------------- /test/regression013.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression013.mx3 -------------------------------------------------------------------------------- /test/regression015.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression015.mx3 -------------------------------------------------------------------------------- /test/regression016.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression016.mx3 -------------------------------------------------------------------------------- /test/regression017.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression017.mx3 -------------------------------------------------------------------------------- /test/regression018.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/regression018.mx3 -------------------------------------------------------------------------------- /test/relax-stress.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/relax-stress.mx3 -------------------------------------------------------------------------------- /test/repeat.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/repeat.mx3 -------------------------------------------------------------------------------- /test/resize.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/resize.mx3 -------------------------------------------------------------------------------- /test/rk4.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/rk4.mx3 -------------------------------------------------------------------------------- /test/rk4temperature.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/rk4temperature.mx3 -------------------------------------------------------------------------------- /test/rk56.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/rk56.mx3 -------------------------------------------------------------------------------- /test/rkky.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/rkky.mx3 -------------------------------------------------------------------------------- /test/rmsurfacecharge.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/rmsurfacecharge.mx3 -------------------------------------------------------------------------------- /test/roughness.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/roughness.mx3 -------------------------------------------------------------------------------- /test/run.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/run.bash -------------------------------------------------------------------------------- /test/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/run.ps1 -------------------------------------------------------------------------------- /test/runningaverage.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/runningaverage.mx3 -------------------------------------------------------------------------------- /test/runwhile.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/runwhile.mx3 -------------------------------------------------------------------------------- /test/savefile.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/savefile.mx3 -------------------------------------------------------------------------------- /test/shifted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/shifted.go -------------------------------------------------------------------------------- /test/shiftgeom.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/shiftgeom.mx3 -------------------------------------------------------------------------------- /test/shiftgeom.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/shiftgeom.todo -------------------------------------------------------------------------------- /test/shiftgrains.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/shiftgrains.mx3 -------------------------------------------------------------------------------- /test/slice.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/slice.mx3 -------------------------------------------------------------------------------- /test/smoothdemag.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/smoothdemag.mx3 -------------------------------------------------------------------------------- /test/smoothgeom.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/smoothgeom.mx3 -------------------------------------------------------------------------------- /test/snapshot.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/snapshot.mx3 -------------------------------------------------------------------------------- /test/source.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/source.todo -------------------------------------------------------------------------------- /test/sourcetest: -------------------------------------------------------------------------------- 1 | // read by source.txt 2 | variable := 2 3 | -------------------------------------------------------------------------------- /test/sp4_angles.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/sp4_angles.mx3 -------------------------------------------------------------------------------- /test/standardproblem4-3d-minimize.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/standardproblem4-3d-minimize.mx3 -------------------------------------------------------------------------------- /test/standardproblem4-3d.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/standardproblem4-3d.mx3 -------------------------------------------------------------------------------- /test/standardproblem4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/standardproblem4.go -------------------------------------------------------------------------------- /test/standardproblem4.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/standardproblem4.mx3 -------------------------------------------------------------------------------- /test/standardproblem4_rk56.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/standardproblem4_rk56.mx3 -------------------------------------------------------------------------------- /test/standardproblem4b.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/standardproblem4b.mx3 -------------------------------------------------------------------------------- /test/standardproblem5.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/standardproblem5.mx3 -------------------------------------------------------------------------------- /test/standardproblem5a.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/standardproblem5a.mx3 -------------------------------------------------------------------------------- /test/std5b.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/std5b.mif -------------------------------------------------------------------------------- /test/std5b.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/std5b.mx3 -------------------------------------------------------------------------------- /test/std5c.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/std5c.mx3 -------------------------------------------------------------------------------- /test/std5c3d.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/std5c3d.mx3 -------------------------------------------------------------------------------- /test/steppercache.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/steppercache.mx3 -------------------------------------------------------------------------------- /test/table.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/table.mx3 -------------------------------------------------------------------------------- /test/tempminimize.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/tempminimize.mx3 -------------------------------------------------------------------------------- /test/temprelax.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/temprelax.mx3 -------------------------------------------------------------------------------- /test/testdata/binary4.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/binary4.dump -------------------------------------------------------------------------------- /test/testdata/binary4.ovf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/binary4.ovf -------------------------------------------------------------------------------- /test/testdata/binary8.ovf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/binary8.ovf -------------------------------------------------------------------------------- /test/testdata/m2.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/m2.dump -------------------------------------------------------------------------------- /test/testdata/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/mask.png -------------------------------------------------------------------------------- /test/testdata/movf2.ovf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/movf2.ovf -------------------------------------------------------------------------------- /test/testdata/oommf_ovf1_binary4.omf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/oommf_ovf1_binary4.omf -------------------------------------------------------------------------------- /test/testdata/oommf_ovf1_binary8.omf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/oommf_ovf1_binary8.omf -------------------------------------------------------------------------------- /test/testdata/oommf_ovf1_text.omf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/oommf_ovf1_text.omf -------------------------------------------------------------------------------- /test/testdata/randommag4x4x1.ovf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/randommag4x4x1.ovf -------------------------------------------------------------------------------- /test/testdata/regions.ovf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/regions.ovf -------------------------------------------------------------------------------- /test/testdata/scalarovf2.ovf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/testdata/scalarovf2.ovf -------------------------------------------------------------------------------- /test/thermometer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/thermometer.go -------------------------------------------------------------------------------- /test/timedep.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/timedep.mx3 -------------------------------------------------------------------------------- /test/timedep3.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/timedep3.mx3 -------------------------------------------------------------------------------- /test/timedep3Region.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/timedep3Region.mx3 -------------------------------------------------------------------------------- /test/timedepRegion.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/timedepRegion.mx3 -------------------------------------------------------------------------------- /test/timedepRegion2.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/timedepRegion2.mx3 -------------------------------------------------------------------------------- /test/topologicalcharge-skyrmion.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/topologicalcharge-skyrmion.mx3 -------------------------------------------------------------------------------- /test/topologicalcharge-uniform.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/topologicalcharge-uniform.mx3 -------------------------------------------------------------------------------- /test/topologicalcharge-vortex.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/topologicalcharge-vortex.mx3 -------------------------------------------------------------------------------- /test/topologicalchargelattice-skyrmion.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/topologicalchargelattice-skyrmion.mx3 -------------------------------------------------------------------------------- /test/topologicalchargelattice-uniform.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/topologicalchargelattice-uniform.mx3 -------------------------------------------------------------------------------- /test/topologicalchargelattice-vortex.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/topologicalchargelattice-vortex.mx3 -------------------------------------------------------------------------------- /test/uniaxial_full.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/uniaxial_full.mx3 -------------------------------------------------------------------------------- /test/uniaxialanisotropy-minimize.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/uniaxialanisotropy-minimize.mx3 -------------------------------------------------------------------------------- /test/uniaxialanisotropy.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/uniaxialanisotropy.mif -------------------------------------------------------------------------------- /test/uniaxialanisotropy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/uniaxialanisotropy.mx3 -------------------------------------------------------------------------------- /test/vector.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/vector.mx3 -------------------------------------------------------------------------------- /test/zeemanenergy.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/zeemanenergy.mx3 -------------------------------------------------------------------------------- /test/zhangliPBC.mx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/test/zhangliPBC.mx3 -------------------------------------------------------------------------------- /timer/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /timer/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/timer/timer.go -------------------------------------------------------------------------------- /util/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go install -v 3 | -------------------------------------------------------------------------------- /util/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/util/atom.go -------------------------------------------------------------------------------- /util/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/util/format.go -------------------------------------------------------------------------------- /util/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/util/log.go -------------------------------------------------------------------------------- /util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mumax/3/HEAD/util/util.go --------------------------------------------------------------------------------