From 5afdbfb921e1d1ed233f569418c189acde36c8f4 Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Mon, 22 Apr 2024 18:15:21 -0600 Subject: [PATCH] doc, https://github.com/phetsims/faradays-electromagnetic-lab/issues/156 --- js/common/view/PickupCoilAreaNode.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/common/view/PickupCoilAreaNode.ts b/js/common/view/PickupCoilAreaNode.ts index bb8348f3..49dde743 100644 --- a/js/common/view/PickupCoilAreaNode.ts +++ b/js/common/view/PickupCoilAreaNode.ts @@ -62,7 +62,7 @@ export default class PickupCoilAreaNode extends Node { const samplePointPosition = this.reusablePosition.set( pickupCoilPosition ).add( samplePoint ); // If the sample point is inside the magnet, using the chord length computed above would exaggerate the - // sample point's EMF contribution. So use the magnet's thickness (depth). The field outside the magnet + // sample point's contribution to flux. So use the magnet's thickness (depth). The field outside the magnet // is relatively weak, so ignore its contribution. if ( pickupCoil.magnet.isInside( samplePointPosition ) ) { chordLength = magnetThickness;