Difference between revisions of "ADE User Guide"

(Marked this version for translation)
m
 
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
[[Category: Analytica Decision Engine]]
 
[[Category:ADE User Guide]]
 
[[Category:ADE User Guide]]
 +
[[Category:Documentation]]
 +
 
<languages />
 
<languages />
 
<translate><!--T:1-->
 
<translate><!--T:1-->
The Analytica Decision Engine (ADE) is a powerful COM component that runs Analytica models on a server computer. Other applications can use ADE to access Analytica models via standard COM interface. ADE  provides an Application Programming Interface (API) through which other application programs can create, read, check, parse, evaluate, modify, and save Analytica models. ADE does not itself provide a user interface as Analytica provides on a desktop computer. If you want a web-based user interface, you can use the [[Analytica Cloud Player]] (ACP) which itself uses ADE.  Or you can use ADE to access your Analytica model from another application that can supply inputs, run the model, and collect and display results.  
+
Analytica Decision Engine (ADE) offers an Application Programming Interface (API) to enable other applications to run and access an Analytica model running on a server. The other application may supply inputs, run the model, and collect and display results.  It may also create, read, check, parse, evaluate, modify, and save Analytica models. ADE provides access using the Component Object Model (COM), the widely-used standard for communication between processes or applications. Most widely-used programming languages support COM.
  
<!--T:2-->
+
ADE runs Analytica models created with a desktop edition of Analytica.  ADE offers the same model parsing and calculation engine used in Analytica.  But, ADE includes no user interface, as Analytica does on a desktop computer. Most ADE developers build their own custom user interface as a web application or desktop application.
This is the user guide for programmers that wish to develop applications using ADE. It also contains information about how to install ADE.
 
  
==How to use this document== <!--T:3-->
+
If you want deploy an Analytica model for access via the web,  the easiest way is to use [[Analytica Cloud Platform]] (ACP).  ACP offers a user interface similar to desktop Analytica, with some additional features, such as tabs and embedded tables and charts suited to a web application. You can upload a model to run in ACP directly from inside your Analytica desktop application: Just select [[Publish To Cloud dialog|Publish to Cloud]] from Analytica's [[File menu]].  Every Analytica desktop subscription (even [[Free Edition]]) includes free access to ACP to deploy your models via the web for a limited number of sessions (usually 25/month). You can also set up an [[ACP Group Accounts|ACP Group Plan]] for up to 10 or 25 people. For larger enterprise web applications with multiple users, especially with sensitive or proprietary data, you can license ACP to install on your own server. ACP uses ADE internally.
Under each page's title the page's hierarchy and any parent pages will be listed. The pages in the guide can be read in any order, but for those who want to read the guide sequentially there are Previous and Next links at the bottom of each page which will take the reader through all of the guide's pages in order.
 
  
<!--T:4-->
+
This user guide is for programmers that wish to develop applications using ADE. It includes an introduction, how to install ADE, a Tutorial, details on the ADE COM classes, and a reference to the ADE Server classes.  You may read the sections in any order, but there are Previous and Next links at the bottom of each page if you want to read the pages in sequence.
At the bottom of each page there is also a Navbox that will list all of the contents of the guide so any page in the guide will be accessible from any other page in the guide.
 
  
==Contents of the ADE User Guide== <!--T:5-->
+
== Sections ==
===[[Introduction to ADE]]===
+
* [[Introduction to ADE]]:  What ADE is and how to use it.
This chapter explains what ADE is and how to use the ADE Server.
 
  
===[[Installation of ADE]]=== <!--T:6-->
+
* [[Installation of ADE]]: How to install ADE on your Windows Server computer or Windows desktop (OS 7 or higher).
This chapter explains the steps required to install ADE 4.6 on your Windows NT 4 (>SP 6), 2000, XP, or Vista computer.
 
  
===[[The ADE Tutorial]]=== <!--T:7-->
+
* [[The ADE Tutorial]]: How to use ADE from within a Visual Basic program. It steps you through building your first ADE application using Visual Basic.
This chapter shows you how to use ADE from within a Visual Basic program, and steps you through building your first ADE application using Visual Basic.
 
  
===[[Using the ADE Server]]=== <!--T:8-->
+
* [[Using the ADE Server]]: A step-by-step guide to the functionality accessible through ADE. You should read this section to get better acquainted with the classes, and their methods and properties. By using the sample code fragments presented in this section in your code, you can begin accessing information in your models from your Visual Basic applications immediately.
This chapter provides a step-by-step guide to the functionality accessible through ADE. You should read this section to get better acquainted with the classes, and their methods and properties. By using the sample code fragments presented in this section in your code, you can begin accessing information in your models from your Visual Basic applications immediately.
 
  
===[[Working with Models, Modules, and Files in ADE]]=== <!--T:9-->
+
* [[Working with Models, Modules, and Files in ADE]]: Examples of common operations and manipulations you might perform on objects in your Analytica model.
This chapter contains examples of common operations and manipulations you might perform on objects in your Analytica model.
 
  
===[[ADE Server Class Reference]]=== <!--T:10-->
+
* [[ADE Server Class Reference]]: Descriptions of each object class, its properties and methods, including method syntax, data types, and property access. Refer to this section after you’ve read through [[Using the ADE Server]], if you have specific questions about particular methods and properties.
This chapter provides reference materials on the object classes in ADE and their properties and methods, including method syntax, data types, and property access information. Refer to the information in this section after you’ve read through [[Using the ADE Server]] and have specific questions about particular methods and properties.
 
  
==See Also== <!--T:12-->
+
==See Also==
  
<!--T:13-->
+
* [http://www.analytica.com/products/analytica-editions/analytica-decision-engine/ Analytica Decision Engine] on the [http://analytica.com Lumina web site] for basic information about ADE, trials, and pricing.
* [http://www.lumina.com/products/analytica-editions/analytica-decision-engine/ Analytica Decision Engine] on the [http://lumina.com Lumina web site] for basic information about ADE, trials, and pricing.
 
  
<!--T:11-->
 
 
{| style="margin: 1em auto 1em auto;width: 100%;border:0;table-layout: fixed;" cellpadding=5
 
{| style="margin: 1em auto 1em auto;width: 100%;border:0;table-layout: fixed;" cellpadding=5
 
|- style="text-align: center"
 
|- style="text-align: center"

Latest revision as of 21:24, 22 February 2024


Other languages:
English • ‎中文 • ‎中文(中国大陆)‎

Analytica Decision Engine (ADE) offers an Application Programming Interface (API) to enable other applications to run and access an Analytica model running on a server. The other application may supply inputs, run the model, and collect and display results. It may also create, read, check, parse, evaluate, modify, and save Analytica models. ADE provides access using the Component Object Model (COM), the widely-used standard for communication between processes or applications. Most widely-used programming languages support COM.

ADE runs Analytica models created with a desktop edition of Analytica. ADE offers the same model parsing and calculation engine used in Analytica. But, ADE includes no user interface, as Analytica does on a desktop computer. Most ADE developers build their own custom user interface as a web application or desktop application.

If you want deploy an Analytica model for access via the web, the easiest way is to use Analytica Cloud Platform (ACP). ACP offers a user interface similar to desktop Analytica, with some additional features, such as tabs and embedded tables and charts suited to a web application. You can upload a model to run in ACP directly from inside your Analytica desktop application: Just select Publish to Cloud from Analytica's File menu. Every Analytica desktop subscription (even Free Edition) includes free access to ACP to deploy your models via the web for a limited number of sessions (usually 25/month). You can also set up an ACP Group Plan for up to 10 or 25 people. For larger enterprise web applications with multiple users, especially with sensitive or proprietary data, you can license ACP to install on your own server. ACP uses ADE internally.

This user guide is for programmers that wish to develop applications using ADE. It includes an introduction, how to install ADE, a Tutorial, details on the ADE COM classes, and a reference to the ADE Server classes. You may read the sections in any order, but there are Previous and Next links at the bottom of each page if you want to read the pages in sequence.

Sections

  • Installation of ADE: How to install ADE on your Windows Server computer or Windows desktop (OS 7 or higher).
  • The ADE Tutorial: How to use ADE from within a Visual Basic program. It steps you through building your first ADE application using Visual Basic.
  • Using the ADE Server: A step-by-step guide to the functionality accessible through ADE. You should read this section to get better acquainted with the classes, and their methods and properties. By using the sample code fragments presented in this section in your code, you can begin accessing information in your models from your Visual Basic applications immediately.
  • ADE Server Class Reference: Descriptions of each object class, its properties and methods, including method syntax, data types, and property access. Refer to this section after you’ve read through Using the ADE Server, if you have specific questions about particular methods and properties.

See Also

ADE User Guide Introduction to ADE
Comments


You are not allowed to post comments.