home Forums # Technical Support How to use .fcl file

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1256
    Unknown
    Member

    Hey,
    I have run a sample code for fuzzylie but just running the .cpp file using g++. Content of the file is as follows.
    I can see a FCL in my folder as well i want to know how can i use that file ? I suppose both files .cpp and .fcl file doing same thing defining rules

    #include <fl/Headers.h>

    int main(int argc, char** argv){
    fl::Engine* engine = new fl::Engine;
    engine->setName(“qtfuzzylite”);

    fl::InputVariable* inputVariable = new fl::InputVariable;
    inputVariable->setEnabled(true);
    inputVariable->setName(“AllInputTerms”);
    inputVariable->setRange(0.000, 6.500);
    inputVariable->addTerm(new fl::Sigmoid(“A”, 0.500, -20.000));
    inputVariable->addTerm(new fl::ZShape(“B”, 0.000, 1.000));
    inputVariable->addTerm(new fl::Ramp(“C”, 1.000, 0.000));
    inputVariable->addTerm(new fl::Triangle(“D”, 0.500, 1.000, 1.500));
    inputVariable->addTerm(new fl::Trapezoid(“E”, 1.000, 1.250, 1.750, 2.000));
    inputVariable->addTerm(new fl::Rectangle(“F”, 1.750, 2.250));
    inputVariable->addTerm(fl::Discrete::create(“G”, 10, 2.000, 0.000, 2.250, 1.000, 2.500, 0.500, 2.750, 1.000, 3.000, 0.000));
    inputVariable->addTerm(new fl::Gaussian(“H”, 3.000, 0.200));
    inputVariable->addTerm(new fl::GaussianProduct(“I”, 3.500, 0.100, 3.300, 0.300));
    inputVariable->addTerm(new fl::Bell(“J”, 4.000, 0.250, 3.000));
    inputVariable->addTerm(new fl::PiShape(“K”, 4.000, 4.500, 4.500, 5.000));
    inputVariable->addTerm(new fl::SigmoidDifference(“L”, 4.750, 10.000, 30.000, 5.250));
    inputVariable->addTerm(new fl::SigmoidProduct(“M”, 5.250, 20.000, -10.000, 5.750));
    inputVariable->addTerm(new fl::Ramp(“N”, 5.500, 6.500));
    inputVariable->addTerm(new fl::SShape(“O”, 5.500, 6.500));
    inputVariable->addTerm(new fl::Sigmoid(“P”, 6.000, 20.000));
    engine->addInputVariable(inputVariable);

    fl::OutputVariable* outputVariable = new fl::OutputVariable;
    outputVariable->setEnabled(true);
    outputVariable->setName(“AllOutputTerms”);
    outputVariable->setRange(0.000, 6.500);
    outputVariable->fuzzyOutput()->setAccumulation(new fl::Maximum);
    outputVariable->setDefuzzifier(new fl::Centroid(200));
    outputVariable->setDefaultValue(fl::nan);
    outputVariable->setLockValidOutput(false);
    outputVariable->setLockOutputRange(false);
    outputVariable->addTerm(new fl::Sigmoid(“A”, 0.500, -20.000));
    outputVariable->addTerm(new fl::ZShape(“B”, 0.000, 1.000));
    outputVariable->addTerm(new fl::Ramp(“C”, 1.000, 0.000));
    outputVariable->addTerm(new fl::Triangle(“D”, 0.500, 1.000, 1.500));
    outputVariable->addTerm(new fl::Trapezoid(“E”, 1.000, 1.250, 1.750, 2.000));
    outputVariable->addTerm(new fl::Rectangle(“F”, 1.750, 2.250));
    outputVariable->addTerm(fl::Discrete::create(“G”, 10, 2.000, 0.000, 2.250, 1.000, 2.500, 0.500, 2.750, 1.000, 3.000, 0.000));
    outputVariable->addTerm(new fl::Gaussian(“H”, 3.000, 0.200));
    outputVariable->addTerm(new fl::GaussianProduct(“I”, 3.500, 0.100, 3.300, 0.300));
    outputVariable->addTerm(new fl::Bell(“J”, 4.000, 0.250, 3.000));
    outputVariable->addTerm(new fl::PiShape(“K”, 4.000, 4.500, 4.500, 5.000));
    outputVariable->addTerm(new fl::SigmoidDifference(“L”, 4.750, 10.000, 30.000, 5.250));
    outputVariable->addTerm(new fl::SigmoidProduct(“M”, 5.250, 20.000, -10.000, 5.750));
    outputVariable->addTerm(new fl::Ramp(“N”, 5.500, 6.500));
    outputVariable->addTerm(new fl::SShape(“O”, 5.500, 6.500));
    outputVariable->addTerm(new fl::Sigmoid(“P”, 6.000, 20.000));
    engine->addOutputVariable(outputVariable);

    fl::RuleBlock* ruleBlock = new fl::RuleBlock;
    ruleBlock->setEnabled(true);
    ruleBlock->setName(“”);
    ruleBlock->setConjunction(new fl::Minimum);
    ruleBlock->setDisjunction(new fl::Maximum);
    ruleBlock->setActivation(new fl::Minimum);
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is A then AllOutputTerms is P”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is B then AllOutputTerms is O”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is C then AllOutputTerms is N”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is D then AllOutputTerms is M”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is E then AllOutputTerms is L”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is F then AllOutputTerms is K”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is G then AllOutputTerms is J”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is H then AllOutputTerms is I”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is I then AllOutputTerms is H”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is J then AllOutputTerms is G”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is K then AllOutputTerms is F”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is L then AllOutputTerms is E”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is M then AllOutputTerms is D”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is N then AllOutputTerms is C”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is O then AllOutputTerms is B”, engine));
    ruleBlock->addRule(fl::Rule::parse(“if AllInputTerms is P then AllOutputTerms is A”, engine));
    engine->addRuleBlock(ruleBlock);

    engine->setInputValue(“AllInputTerms”, 4.0);
    engine->process();
    engine->getOutputValue(“AllOutputTerms”);
    FL_LOG(engine->getOutputValue(“AllOutputTerms”));
    }

    #1258

    Hi,

    std::string path = "fuzzylite/examples/mamdani/SimpleDimmer.fcl";
    std::ifstream reader(path.c_str());
    if (not reader.is_open()) {
        throw fl::Exception("[file error] file <" + path + "> could not be opened", FL_AT);
    }
    std::ostringstream textEngine;
    std::string line;
    while (std::getline(reader, line)) {
        textEngine << line << std::endl;
    }
    reader.close();
    
    Engine* engine = FclImporter().fromString(textEngine.str());
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.