<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: DOE constrain not working in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/DOE-constrain-not-working/m-p/440080#M68837</link>
    <description>&lt;P&gt;I suspect that it is the way that you have defined your disallowed combinations with ANDs between all the conditions. I don't think that it is defining the disallowed combinations that you intended.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have broken out the conditions that you have linked with ANDs into separate lines to try and make more sense of it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Suplier == "Finland" 
&amp;amp; ("\!"Nazal\!" Amount"n == "160" | "\!"Nazal\!" Amount"n =="180") 
&amp;amp; ("\!"Long-Short\!" fiber ratio"n == "80-20" | "\!"Long-Short\!" fiber ratio"n == "60-40" | "\!"Long-Short\!" fiber ratio"n == "50-50") 
&amp;amp; (Unraveling time == "105" | Unraveling time == "120") 
&amp;amp; (Sealing material percentage == "0.5" | Sealing material percentage == "1" | Sealing material percentage == "1.5")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps this way of defining the disallowed combinations works better:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(Suplier == "Finland" 
&amp;amp; ("\!"Nazal\!" Amount"n == "160" | "\!"Nazal\!" Amount"n =="180"))
|
(Suplier == "Finland"
&amp;amp; ("\!"Long-Short\!" fiber ratio"n == "80-20" | "\!"Long-Short\!" fiber ratio"n == "60-40" | "\!"Long-Short\!" fiber ratio"n == "50-50"))
|
(Suplier == "Finland"
&amp;amp; (Unraveling time == "105" | Unraveling time == "120"))
|
(Suplier == "Finland"
&amp;amp; (Sealing material percentage == "0.5" | Sealing material percentage == "1" | Sealing material percentage == "1.5"))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here each condition is separated with an OR.&lt;/P&gt;
&lt;P&gt;See the attached Custom Design that was created with these disallowed combinations.&lt;/P&gt;
&lt;P&gt;I would have some concerns about how useful this experiment is because most combinations are disallowed when Suplier = Finland. But again, maybe that is not what you intended.&lt;/P&gt;
&lt;P&gt;It might help if you can state in words the nature of the disallowed combinations that you have in your experiment.&lt;/P&gt;
&lt;P&gt;I hope this helps,&lt;BR /&gt;Phil&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Nov 2021 14:33:59 GMT</pubDate>
    <dc:creator>Phil_Kay</dc:creator>
    <dc:date>2021-11-26T14:33:59Z</dc:date>
    <item>
      <title>DOE constrain not working</title>
      <link>https://community.jmp.com/t5/Discussions/DOE-constrain-not-working/m-p/439667#M68809</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have JMP 16, and I want to design a DOE with the attached factors and the below constrains.&lt;/P&gt;
&lt;P&gt;When I get the stage of the design test it ignor the constrain, without any warning messege.&lt;/P&gt;
&lt;P&gt;Can anybody help me with this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Suplier == "Finland" &amp;amp; ("\!"Nazal\!" Amount"n == "160" | "\!"Nazal\!" Amount"n ==&lt;BR /&gt;"180") &amp;amp; ("\!"Long-Short\!" fiber ratio"n == "80-20" |&lt;BR /&gt;"\!"Long-Short\!" fiber ratio"n == "60-40" | "\!"Long-Short\!" fiber ratio"n ==&lt;BR /&gt;"50-50") &amp;amp; (Unraveling time == "105" | Unraveling time == "120") &amp;amp; (&lt;BR /&gt;Sealing material percentage == "0.5" | Sealing material percentage == "1" |&lt;BR /&gt;Sealing material percentage == "1.5")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Eldad&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 21:07:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/DOE-constrain-not-working/m-p/439667#M68809</guid>
      <dc:creator>eldad_galili</dc:creator>
      <dc:date>2023-06-08T21:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: DOE constrain not working</title>
      <link>https://community.jmp.com/t5/Discussions/DOE-constrain-not-working/m-p/440080#M68837</link>
      <description>&lt;P&gt;I suspect that it is the way that you have defined your disallowed combinations with ANDs between all the conditions. I don't think that it is defining the disallowed combinations that you intended.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have broken out the conditions that you have linked with ANDs into separate lines to try and make more sense of it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Suplier == "Finland" 
&amp;amp; ("\!"Nazal\!" Amount"n == "160" | "\!"Nazal\!" Amount"n =="180") 
&amp;amp; ("\!"Long-Short\!" fiber ratio"n == "80-20" | "\!"Long-Short\!" fiber ratio"n == "60-40" | "\!"Long-Short\!" fiber ratio"n == "50-50") 
&amp;amp; (Unraveling time == "105" | Unraveling time == "120") 
&amp;amp; (Sealing material percentage == "0.5" | Sealing material percentage == "1" | Sealing material percentage == "1.5")&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps this way of defining the disallowed combinations works better:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;(Suplier == "Finland" 
&amp;amp; ("\!"Nazal\!" Amount"n == "160" | "\!"Nazal\!" Amount"n =="180"))
|
(Suplier == "Finland"
&amp;amp; ("\!"Long-Short\!" fiber ratio"n == "80-20" | "\!"Long-Short\!" fiber ratio"n == "60-40" | "\!"Long-Short\!" fiber ratio"n == "50-50"))
|
(Suplier == "Finland"
&amp;amp; (Unraveling time == "105" | Unraveling time == "120"))
|
(Suplier == "Finland"
&amp;amp; (Sealing material percentage == "0.5" | Sealing material percentage == "1" | Sealing material percentage == "1.5"))&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here each condition is separated with an OR.&lt;/P&gt;
&lt;P&gt;See the attached Custom Design that was created with these disallowed combinations.&lt;/P&gt;
&lt;P&gt;I would have some concerns about how useful this experiment is because most combinations are disallowed when Suplier = Finland. But again, maybe that is not what you intended.&lt;/P&gt;
&lt;P&gt;It might help if you can state in words the nature of the disallowed combinations that you have in your experiment.&lt;/P&gt;
&lt;P&gt;I hope this helps,&lt;BR /&gt;Phil&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Nov 2021 14:33:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/DOE-constrain-not-working/m-p/440080#M68837</guid>
      <dc:creator>Phil_Kay</dc:creator>
      <dc:date>2021-11-26T14:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: DOE constrain not working</title>
      <link>https://community.jmp.com/t5/Discussions/DOE-constrain-not-working/m-p/440456#M68889</link>
      <description>&lt;P&gt;Thank yoy very much, your suggestion of changing between "and" to "or" worked!!&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 11:13:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/DOE-constrain-not-working/m-p/440456#M68889</guid>
      <dc:creator>eldad_galili</dc:creator>
      <dc:date>2021-11-29T11:13:35Z</dc:date>
    </item>
  </channel>
</rss>

