Attendees: Ric Dokken, Scott Franzen, Carey Garrenton, Greg Maston, Jim O'Reilly, Ernie Wahl Line and clause numbers if any are with regard to posted STIL.4 syntax document D02 dated July 27, 2015. CONSENSUS: accept spec-variable syntax as defined in STIL.0 (no initialization syntax for Meas field). CONSENSUS: Meas fields are initialized at LOAD to None. A value other than one, with or without units, consistent with other fields may be assigned set via a test or test-action or flownode-action. // ============================================================================= Example 1: constrain Meas field to units or no units 1 Spec spec { 2 Category cat { 3 var1 = 1; // Constrains Meas field to no units via Typ field 4 var2 { Typ 1; } // Constrains Meas field to no units via Typ field 5 var3 = NoneV; // Constrains Meas field to Volts via Typ field 6 var4 {} // Unconstrains Meas field units on first assignment 7 } 8 } // ============================================================================= Example 2: set Meas field at asynchronous event in addition to LOAD 1 // -------------------------------------------------------------------------- 2 TestType SetMeasField { 3 Parameters { InOut SpecVariable svar; In General value; } 4 PreActions { svar.Meas = value; } // Can't assign None 5 } 6 // -----------------------------------------------------------------