About: Digital differential analyzer     Goto   Sponge   NotDistinct   Permalink

An Entity of Type : yago:WikicatEarlyComputers, within Data Space : dbpedia.org:8891 associated with source document(s)
QRcode icon
http://dbpedia.org:8891/describe/?url=http%3A%2F%2Fdbpedia.org%2Fresource%2FDigital_differential_analyzer

A digital differential analyzer (DDA), also sometimes called a digital integrating computer, is a digital implementation of a differential analyzer. The integrators in a DDA are implemented as accumulators, with the numeric result converted back to a pulse rate by the overflow of the accumulator.

AttributesValues
rdf:type
rdfs:label
  • Digital differential analyzer (en)
  • Digital Differential Analyzer (pt)
rdfs:comment
  • A digital differential analyzer (DDA), also sometimes called a digital integrating computer, is a digital implementation of a differential analyzer. The integrators in a DDA are implemented as accumulators, with the numeric result converted back to a pulse rate by the overflow of the accumulator. (en)
  • O Analisador Diferencial Digital (em inglês Digital Differential Analyzer ou simplesmente DDA) é uma implementação digital do . Os integradores em uma DDA são implementados como acumuladores, com o resultado numérico convertido a uma sequência de pulso pelo do acumulador. Segue o código para o algoritmo do DDa em C++ (pt)
foaf:depiction
  • http://commons.wikimedia.org/wiki/Special:FilePath/DDA_Integrator_blockdiagram.png
dcterms:subject
Wikipage page ID
Wikipage revision ID
Link from a Wikipage to another Wikipage
Link from a Wikipage to an external page
sameAs
dbp:wikiPageUsesTemplate
thumbnail
has abstract
  • A digital differential analyzer (DDA), also sometimes called a digital integrating computer, is a digital implementation of a differential analyzer. The integrators in a DDA are implemented as accumulators, with the numeric result converted back to a pulse rate by the overflow of the accumulator. The primary advantages of a DDA over the conventional analog differential analyzer are greater precision of the results and the lack of drift/noise/slip/lash in the calculations. The precision is only limited by register size and the resulting accumulated rounding/truncation errors of repeated addition. Digital electronics inherently lacks the temperature sensitive drift and noise level issues of analog electronics and the and "lash" issues of mechanical analog systems. For problems that can be expressed as differential equations, a DDA can solve them much faster than a general purpose computer (using similar technology). However reprogramming a DDA to solve a different problem (or fix a bug) is much harder than reprogramming a general purpose computer. Many DDAs were hardwired for one problem only and could not be reprogrammed without redesigning them. (en)
  • O Analisador Diferencial Digital (em inglês Digital Differential Analyzer ou simplesmente DDA) é uma implementação digital do . Os integradores em uma DDA são implementados como acumuladores, com o resultado numérico convertido a uma sequência de pulso pelo do acumulador. Segue o código para o algoritmo do DDa em C++ #include #include #include using namespace std;int x1, x2, yl, y2;int main{ int dx,dy,k; float xin, passos, yin, x, y; cout << "insira x1 e y1: "; cin >> x1 >> yl; cout << "insira x2 e y2: "; cin >> x2 >> y2; dx = x2 - x1; dy = y2 - yl; if( abs( dx ) > abs( dy ) ) { passos = abs( dx ); } else { passos = abs( dy ); } xin = dx / passos; yin = dy / passos; x = x1; y = yl; round( x ), round( y ); for( k=1; k < passos; k++ ) { round( xin ), round( yin ); x = x + xin; y = y + yin; round( xin ), round( yin ); cout << "x" << k << ":" << x << " " << "y" << k << ":" << y << endl; } system( "PAUSE" ); return EXIT_SUCCESS;} (pt)
gold:hypernym
prov:wasDerivedFrom
page length (characters) of wiki page
foaf:isPrimaryTopicOf
is Link from a Wikipage to another Wikipage of
is Wikipage redirect of
is Wikipage disambiguates of
is foaf:primaryTopic of
Faceted Search & Find service v1.17_git139 as of Feb 29 2024


Alternative Linked Data Documents: ODE     Content Formats:   [cxml] [csv]     RDF   [text] [turtle] [ld+json] [rdf+json] [rdf+xml]     ODATA   [atom+xml] [odata+json]     Microdata   [microdata+json] [html]    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 08.03.3331 as of Sep 2 2024, on Linux (x86_64-generic-linux-glibc212), Single-Server Edition (62 GB total memory, 54 GB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2024 OpenLink Software