update draw graph & add VA curve
authoryu.dongliang <18588496441@163.com>
Sun, 5 Jan 2025 13:27:45 +0000 (21:27 +0800)
committeryu.dongliang <18588496441@163.com>
Sun, 5 Jan 2025 13:27:45 +0000 (21:27 +0800)
28 files changed:
cpk/Makefile
cpk/add_gate.c
cpk/nand.cpk
cpk/nor.cpk
cpk/not.cpk
examples/add.cpk [deleted file]
examples/add_gate.cpk [new file with mode: 0644]
examples/and.cpk
examples/and_gate.cpk
examples/colpitts_oscillator.cpk [new file with mode: 0644]
examples/or.cpk [deleted file]
examples/or_gate.cpk
examples/sin_oscillator.cpk
main.c
pack/scf_pack.c
scf_eda_pack.c
scf_eda_pack.h
ses_core.h
ses_layout.c
ses_node_analysis.c
ses_path.c
ses_step_dc_npn.c
ses_step_draw.c
ses_step_topo.c
ses_step_va.c
test/colpitts.c
test/fft.c
test/pnp.c

index 30e65c5c512ce10d1ac234d788f3e7f0eb8efc9f..446ede5fc655adcff3177ab7d612a5589790d489 100644 (file)
@@ -2,8 +2,8 @@
 #CFILES += nor.c
 #CFILES += not.c
 #CFILES += and_gate.c
-CFILES += or_gate.c
-#CFILES += add_gate.c
+#CFILES += or_gate.c
+CFILES += add_gate.c
 CFILES += ../scf_eda_pack.c
 CFILES += ../pack/scf_pack.c
 
index 89305c2a0dd592f7d1c32ddddcb2da0eea1915bf..466051dc2ec7fa5d4301fc96311d992e23d0731b 100644 (file)
@@ -6,6 +6,8 @@
 int main(int argc, char* argv[])
 {
        ScfEcomponent* B;
+       ScfEcomponent* R0;
+       ScfEcomponent* R1;
 
        ScfEcomponent* NAND0;
        ScfEcomponent* NOR0;
@@ -19,6 +21,8 @@ int main(int argc, char* argv[])
        f = scf_efunction__alloc("add_gate");
 
        EDA_INST_ADD_COMPONENT(f, B,  SCF_EDA_Battery);
+       EDA_INST_ADD_COMPONENT(f, R0, SCF_EDA_Resistor);
+       EDA_INST_ADD_COMPONENT(f, R1, SCF_EDA_Resistor);
 
        B->pins[SCF_EDA_Battery_NEG]->flags = SCF_EDA_PIN_NEG;
        B->pins[SCF_EDA_Battery_POS]->flags = SCF_EDA_PIN_POS;
@@ -48,10 +52,14 @@ int main(int argc, char* argv[])
        EDA_PIN_ADD_PIN(NAND0, SCF_EDA_NAND_IN0,     NOR0,  SCF_EDA_NOR_IN0);
        EDA_PIN_ADD_PIN(NAND0, SCF_EDA_NAND_IN1,     NOR0,  SCF_EDA_NOR_IN1);
 
-       NAND0->pins[SCF_EDA_NAND_IN0]->flags = SCF_EDA_PIN_IN | SCF_EDA_PIN_IN0;
-       NAND0->pins[SCF_EDA_NAND_IN1]->flags = SCF_EDA_PIN_IN;
+       EDA_PIN_ADD_PIN(R0,    0,                    NAND0, SCF_EDA_NAND_IN0);
+       EDA_PIN_ADD_PIN(R1,    0,                    NAND0, SCF_EDA_NAND_IN1);
 
-       NOR1->pins[SCF_EDA_NOR_OUT]->flags   = SCF_EDA_PIN_OUT;
+       R0->pins[1]->flags = SCF_EDA_PIN_IN | SCF_EDA_PIN_IN0;
+       R1->pins[1]->flags = SCF_EDA_PIN_IN;
+
+       NOR1->pins[SCF_EDA_NOR_OUT]->flags  = SCF_EDA_PIN_OUT;
+       NOT0->pins[SCF_EDA_NOT_OUT]->flags |= SCF_EDA_PIN_CF;
 
        scf_eboard__add_function(b, f);
 
index d8cd77991ed7a4fcbf4b5a21243655932f3f65f8..edf35d3bca3b1947610f6124f1b8f70f1e765c47 100644 (file)
Binary files a/cpk/nand.cpk and b/cpk/nand.cpk differ
index 3fb988d46a32512595309a6c7de07da117762ac0..09edb244c27fc00c059061b8d9f442d008a7a0a9 100644 (file)
Binary files a/cpk/nor.cpk and b/cpk/nor.cpk differ
index ebf9f729ea5aa09df6827e3bdacf9d8ee50cb043..cdaa1010bcf5e4281f4f008a20085147c3b79008 100644 (file)
Binary files a/cpk/not.cpk and b/cpk/not.cpk differ
diff --git a/examples/add.cpk b/examples/add.cpk
deleted file mode 100644 (file)
index 12d89f4..0000000
Binary files a/examples/add.cpk and /dev/null differ
diff --git a/examples/add_gate.cpk b/examples/add_gate.cpk
new file mode 100644 (file)
index 0000000..89fae78
Binary files /dev/null and b/examples/add_gate.cpk differ
index 3fa8216820a3517127669b469727412f608f4094..f856f4a6b6b63d2e6ddc587964e3056cdfa596fa 100644 (file)
Binary files a/examples/and.cpk and b/examples/and.cpk differ
index ec3bb5b310f36456ee3948c6f3bd2fc5c2a3500c..ee72fe1c59f47b01a76c3d57dd36cc37e0d5e6ab 100644 (file)
Binary files a/examples/and_gate.cpk and b/examples/and_gate.cpk differ
diff --git a/examples/colpitts_oscillator.cpk b/examples/colpitts_oscillator.cpk
new file mode 100644 (file)
index 0000000..231558b
Binary files /dev/null and b/examples/colpitts_oscillator.cpk differ
diff --git a/examples/or.cpk b/examples/or.cpk
deleted file mode 100644 (file)
index 870e194..0000000
Binary files a/examples/or.cpk and /dev/null differ
index 488ccf89d1e1e1711db0ec6822754114704bd647..e75ee217e784b5ca67a1f993d481f0b4937ff5cb 100644 (file)
Binary files a/examples/or_gate.cpk and b/examples/or_gate.cpk differ
index 5e1c5c88a00b62008dd3ab9d89f00c8be8b67393..47a70ef677ffd13b7582edc447a605f83b2c2656 100644 (file)
Binary files a/examples/sin_oscillator.cpk and b/examples/sin_oscillator.cpk differ
diff --git a/main.c b/main.c
index d45a58bff0b53698eb0beaa656fc7cc27ae0c590..566a9ca64e63338a67d0b7b2a13678c4f24a7b78 100644 (file)
--- a/main.c
+++ b/main.c
@@ -49,6 +49,112 @@ static void print_board(ScfEboard* b)
        }
 }
 
+int ses_va_curve(ScfEcomponent* c, const char* txt)
+{
+       FILE* fp = fopen(txt, "rb");
+       if (!fp)
+               return -EINVAL;
+
+       double d   = 0.0;
+       double v   = 0.0;
+       double a   = 0.0;
+       double base = 0.1;
+       int    dot = 0;
+
+       while (1) {
+               int ch = fgetc(fp);
+               if (EOF == ch)
+                       break;
+
+               if (' ' == ch)
+                       continue;
+
+               if (',' == ch) {
+                       d    = 0.0;
+                       dot  = 0;
+                       base = 0.1;
+                       continue;
+               }
+
+               if ('.' == ch) {
+                       dot++;
+                       if (dot > 1) {
+                               scf_loge("too many dots: '%d' > 1\n", dot);
+                               fclose(fp);
+                               return -EINVAL;
+                       }
+                       continue;
+               }
+
+               if ('\n' == ch) {
+                       ScfEcurve* curve = calloc(1, sizeof(ScfEcurve));
+                       if (!curve) {
+                               fclose(fp);
+                               return -ENOMEM;
+                       }
+
+                       int ret = scf_ecomponent__add_curve(c, curve);
+                       if (ret < 0) {
+                               free(curve);
+                               fclose(fp);
+                               return ret;
+                       }
+
+                       curve->v   = v;
+                       curve->a   = a;
+                       curve->hfe = d;
+
+                       scf_logi("curve v: %lg, a: %lg, hfe: %lg, R: %lg\n", v, a, d, v / a);
+
+                       d    = 0.0;
+                       dot  = 0;
+                       base = 0.1;
+                       continue;
+               }
+
+               if ('0' <= ch && '9' >= ch) {
+                       ch -= '0';
+
+                       if (0 == dot) {
+                               d *= 10.0;
+                               d += ch;
+                       } else {
+                               d += ch * base;
+                               base /= 10.0;
+                       }
+                       continue;
+               }
+
+               switch (ch) {
+                       case 'm':
+                               d *= 1e-3;
+                               break;
+
+                       case 'u':
+                               d *= 1e-6;
+                               break;
+
+                       case 'V':
+                               v = d;
+                               d = 0.0;
+                               break;
+
+                       case 'A':
+                               a = d;
+                               d = 0.0;
+                               break;
+                       default:
+                               scf_loge("char '%c, %d' Not support\n", ch, ch);
+                               fclose(fp);
+                               return -EINVAL;
+                               break;
+               };
+       }
+
+       fclose(fp);
+       return 0;
+}
+
 int ses_init_component(ScfEcomponent* c)
 {
        ScfEcomponent* c2;
@@ -59,6 +165,12 @@ int ses_init_component(ScfEcomponent* c)
                return -EINVAL;
        c->ops = ed->ops;
 
+       if (ed->va_curve) {
+               int ret = ses_va_curve(c, ed->va_curve);
+               if (ret < 0)
+                       return ret;
+       }
+
        if (!ed->cpk)
                return 0;
 
@@ -191,7 +303,7 @@ int main(int argc, char* argv[])
 
                printf("f: %s\n", f->name);
 
-               ses_steps_analyse(f, 100, 4);
+               ses_steps_analyse(f, 100, 1);
        }
 
        ScfEboard_free(b);
index e49ead736e11a9dcdb6bdcb6aec3fc79509abc5a..abe3e83b08f22430dbc78f9c61594f602292e899 100644 (file)
@@ -354,7 +354,6 @@ long scf_pack(void* p, scf_pack_info_t* infos, long n_infos, uint8_t** pbuf, lon
        if (!*pbuf)
                *plen = 0;
 
-//     prlongf("\n");
        scf_logd("p: %p\n", p);
 
        long i;
index 05388268239e98f78d2fdcd29349c44197ff6dbf..999550f2dba32d38603a1786fff2751b81558799 100644 (file)
@@ -44,7 +44,10 @@ static int __npn_shared(ScfEpin* p)
 
 static int __pnp_path_off(ScfEpin* p0, ScfEpin* p1)
 {
-       if (SCF_EDA_PNP_E == p0->id)
+       if (SCF_EDA_PNP_E != p0->id)
+               return 1;
+
+       if (!p1 || SCF_EDA_PNP_E != p1->id)
                return 0;
        return 1;
 }
@@ -157,33 +160,33 @@ static ScfEops __not_ops =
 
 static ScfEdata  component_datas[] =
 {
-       {SCF_EDA_None,       0,                   0, 0, 0,    0,   0,   0, 0, NULL, NULL},
-       {SCF_EDA_Battery,    0, SCF_EDA_Battery_POS, 0, 0, 1e-9, 1e9,   0, 0, NULL, NULL},
+       {SCF_EDA_None,       0,                   0, 0, 0,    0,   0,   0, 0, NULL, NULL, NULL},
+       {SCF_EDA_Battery,    0, SCF_EDA_Battery_POS, 0, 0, 1e-9, 1e9,   0, 0, NULL, NULL, NULL},
 
-       {SCF_EDA_Resistor,   0,                   0, 0, 0,  1e4,   0,   0, 0, NULL, NULL},
-       {SCF_EDA_Capacitor,  0,                   0, 0, 0,   10, 0.1,   0, 0, NULL, NULL},
-       {SCF_EDA_Inductor,   0,                   0, 0, 0,   10,   0, 1e3, 0, NULL, NULL},
+       {SCF_EDA_Resistor,   0,                   0, 0, 0,  1e4,   0,   0, 0, NULL, NULL, NULL},
+       {SCF_EDA_Capacitor,  0,                   0, 0, 0,   10, 0.1,   0, 0, NULL, NULL, NULL},
+       {SCF_EDA_Inductor,   0,                   0, 0, 0,   10,   0, 1e3, 0, NULL, NULL, NULL},
 
-       {SCF_EDA_Diode,      0,                   0, 0, 0,    0,   0,   0, 0, &__diode_ops, NULL},
-       {SCF_EDA_NPN,        0,                   0, 0, 0,    0,   0,   0, 0, &__npn_ops,   NULL},
-       {SCF_EDA_PNP,        0,                   0, 0, 0,    0,   0,   0, 0, &__pnp_ops,   NULL},
+       {SCF_EDA_Diode,      0,                   0, 0, 0,    0,   0,   0, 0, &__diode_ops, NULL, NULL},
+       {SCF_EDA_NPN,        0,                   0, 0, 0,    0,   0,   0, 0, &__npn_ops,   NULL, "./cpk/9013.txt"},
+       {SCF_EDA_PNP,        0,                   0, 0, 0,    0,   0,   0, 0, &__pnp_ops,   NULL, NULL},
 
-       {SCF_EDA_NAND,       0,                   0, 0, 0,    0,   0,   0, 0, &__nand_ops,  "./cpk/nand.cpk"},
-       {SCF_EDA_NOR,        0,                   0, 0, 0,    0,   0,   0, 0, &__nor_ops,   "./cpk/nor.cpk"},
-       {SCF_EDA_NOT,        0,                   0, 0, 0,    0,   0,   0, 0, &__not_ops,   "./cpk/not.cpk"},
+       {SCF_EDA_NAND,       0,                   0, 0, 0,    0,   0,   0, 0, &__nand_ops,  "./cpk/nand.cpk", NULL},
+       {SCF_EDA_NOR,        0,                   0, 0, 0,    0,   0,   0, 0, &__nor_ops,   "./cpk/nor.cpk", NULL},
+       {SCF_EDA_NOT,        0,                   0, 0, 0,    0,   0,   0, 0, &__not_ops,   "./cpk/not.cpk", NULL},
 };
 
 static ScfEdata  pin_datas[] =
 {
-       {SCF_EDA_None,       0,                   0, 0, 0,    0,   0,   0,   0, NULL, NULL},
+       {SCF_EDA_None,       0,                   0, 0, 0,    0,   0,   0,   0, NULL, NULL, NULL},
 
-       {SCF_EDA_Diode,      0,   SCF_EDA_Diode_NEG, 0, 0,  750,   0,   0,   0, NULL, NULL},
+       {SCF_EDA_Diode,      0,   SCF_EDA_Diode_NEG, 0, 0,  750,   0,   0,   0, NULL, NULL, NULL},
 
-       {SCF_EDA_NPN,        0,       SCF_EDA_NPN_B, 0, 0,  750,   0,   0,   0, NULL, NULL},
-       {SCF_EDA_NPN,        0,       SCF_EDA_NPN_C, 0, 0,    3,   0,   0, 250, NULL, NULL},
+       {SCF_EDA_NPN,        0,       SCF_EDA_NPN_B, 0, 0,  750,   0,   0,   0, NULL, NULL, NULL},
+       {SCF_EDA_NPN,        0,       SCF_EDA_NPN_C, 0, 0,    3,   0,   0, 250, NULL, NULL, NULL},
 
-       {SCF_EDA_PNP,        0,       SCF_EDA_PNP_B, 0, 0,  750,   0,   0,   0, NULL, NULL},
-       {SCF_EDA_PNP,        0,       SCF_EDA_PNP_C, 0, 0,    3,   0,   0, 250, NULL, NULL},
+       {SCF_EDA_PNP,        0,       SCF_EDA_PNP_B, 0, 0,  750,   0,   0,   0, NULL, NULL, NULL},
+       {SCF_EDA_PNP,        0,       SCF_EDA_PNP_C, 0, 0,    3,   0,   0, 250, NULL, NULL, NULL},
 };
 
 static ScfEdata* _pin_find_data(const uint64_t type, const uint64_t model, const uint64_t pid)
@@ -524,7 +527,7 @@ ScfEcomponent* scf_ecomponent__alloc(uint64_t type)
                pin->id     = i;
                pin->ic_lid = -1;
 
-               scf_loge("pin %p, id: %ld, ic_lid: %ld\n", pin, pin->id, pin->ic_lid);
+               scf_logd("pin %p, id: %ld, ic_lid: %ld\n", pin, pin->id, pin->ic_lid);
 
                if (scf_ecomponent__add_pin(c, pin) < 0) {
                        ScfEcomponent_free(c);
@@ -546,6 +549,20 @@ ScfEcomponent* scf_ecomponent__alloc(uint64_t type)
        return c;
 }
 
+int scf_ecomponent__add_curve(ScfEcomponent* c, ScfEcurve* curve)
+{
+       if (!c || !curve)
+               return -EINVAL;
+
+       void* p = realloc(c->curves, sizeof(ScfEcurve*) * (c->n_curves + 1));
+       if (!p)
+               return -ENOMEM;
+
+       c->curves = p;
+       c->curves[c->n_curves++] = curve;
+       return 0;
+}
+
 int scf_ecomponent__add_pin(ScfEcomponent* c, ScfEpin* pin)
 {
        if (!c || !pin)
index f76525efd9378cc6ec74814c1bb743c7d11819b2..f3813b8efcc20dec2c002c95aa9fa3f839c138ac 100644 (file)
@@ -125,6 +125,7 @@ typedef struct {
 
        void*     ops;
        char*     cpk;
+       char*     va_curve;
 } ScfEdata;
 
 typedef struct {
@@ -141,6 +142,18 @@ SCF_PACK_INFO_VAR(ScfLine, x1),
 SCF_PACK_INFO_VAR(ScfLine, y1),
 SCF_PACK_END(ScfLine)
 
+typedef struct {
+       SCF_PACK_DEF_VAR(double, v);
+       SCF_PACK_DEF_VAR(double, a);
+       SCF_PACK_DEF_VAR(double, hfe);
+} ScfEcurve;
+
+SCF_PACK_TYPE(ScfEcurve)
+SCF_PACK_INFO_VAR(ScfEcurve, v),
+SCF_PACK_INFO_VAR(ScfEcurve, a),
+SCF_PACK_INFO_VAR(ScfEcurve, hfe),
+SCF_PACK_END(ScfEcurve)
+
 typedef struct scf_eops_s        ScfEops;
 typedef struct scf_epin_s        ScfEpin;
 typedef struct scf_ecomponent_s  ScfEcomponent;
@@ -280,6 +293,8 @@ struct scf_ecomponent_s
        SCF_PACK_DEF_VAR(uint64_t, model);
        SCF_PACK_DEF_OBJS(ScfEpin, pins);
 
+       SCF_PACK_DEF_OBJS(ScfEcurve, curves);
+
        SCF_PACK_DEF_OBJ(ScfEfunction, pf);
        SCF_PACK_DEF_OBJ(ScfEfunction, f);
        SCF_PACK_DEF_OBJ(ScfEops,      ops);
@@ -309,7 +324,8 @@ SCF_PACK_TYPE(ScfEcomponent)
 SCF_PACK_INFO_VAR(ScfEcomponent, id),
 SCF_PACK_INFO_VAR(ScfEcomponent, type),
 SCF_PACK_INFO_VAR(ScfEcomponent, model),
-SCF_PACK_INFO_OBJS(ScfEcomponent, pins, ScfEpin),
+SCF_PACK_INFO_OBJS(ScfEcomponent, pins,   ScfEpin),
+SCF_PACK_INFO_OBJS(ScfEcomponent, curves, ScfEcurve),
 
 SCF_PACK_INFO_VAR(ScfEcomponent, v),
 SCF_PACK_INFO_VAR(ScfEcomponent, a),
@@ -380,9 +396,10 @@ ScfEpin*       scf_epin__alloc();
 int            scf_epin__add_component(ScfEpin* pin, uint64_t cid, uint64_t pid);
 int            scf_epin__del_component(ScfEpin* pin, uint64_t cid, uint64_t pid);
 
-ScfEcomponent* scf_ecomponent__alloc  (uint64_t type);
+ScfEcomponent* scf_ecomponent__alloc(uint64_t type);
 int            scf_ecomponent__add_pin(ScfEcomponent* c, ScfEpin* pin);
 int            scf_ecomponent__del_pin(ScfEcomponent* c, ScfEpin* pin);
+int            scf_ecomponent__add_curve(ScfEcomponent* c, ScfEcurve* curve);
 ScfEdata*      scf_ecomponent__find_data(const uint64_t type, const uint64_t model);
 
 ScfEfunction*  scf_efunction__alloc        (const   char* name);
index 9aad5319c784b7eb00e0d66486899cacc80c88ca..6ca5e472f516cbdb360266d746be7d23ba1116fa 100644 (file)
@@ -115,7 +115,7 @@ struct ses_step_s
 
 ses_path_t* ses_path_alloc();
 void        ses_path_free (ses_path_t* path);
-void        ses_path_print(ses_path_t* path);
+void        ses_path_print(ses_path_t* path, ScfEfunction* f);
 ses_path_t* ses_path_ref  (ses_path_t* src);
 int         ses_path_xchg (ses_path_t* path0, int k0, ses_path_t* path1, int k1);
 
@@ -136,7 +136,7 @@ void        ses_node_print(ses_node_t* node);
 
 void        ses_nodes_free (scf_vector_t* nodes);
 void        ses_nodes_print(scf_vector_t* nodes);
-void        ses_paths_print(scf_vector_t* paths);
+void        ses_paths_print(scf_vector_t* paths, ScfEfunction* f);
 
 ses_ctx_t*  ses_ctx_alloc();
 void        ses_ctx_free (ses_ctx_t* ctx);
index 8af1a241f272a279b2ecbb5d75eb691e8df7399d..adccb31a07a4439b4729345d8a70a49ba3aeeb11 100644 (file)
@@ -203,78 +203,6 @@ int ses_lines_same_components(ScfEfunction* f)
        return 0;
 }
 
-int ses_lines_diff_components(ScfEfunction* f, ses_graph_t* graph)
-{
-       if (!f || !graph)
-               return -EINVAL;
-
-       ses_vertex_t* v0;
-       ses_vertex_t* v1;
-
-       ScfEline*     el0;
-       ScfEline*     el1;
-       ScfEconn*     ec;
-
-       size_t i;
-       size_t j;
-       size_t k;
-
-       for (i = 0; i + 1 < f->n_elines; i++) {
-               el0           = f->elines[i];
-
-               if (el0->n_conns <= 1)
-                       continue;
-
-               v0 = ses_vertex_add(graph, el0);
-               if (!v0)
-                       return -ENOMEM;
-
-               for (j = i + 1; j < f->n_elines; j++) {
-                       el1           = f->elines[j];
-
-                       if (el1->n_conns <= 1)
-                               continue;
-
-                       for (k = 0; k < el0->n_conns; k++) {
-                               ec =        el0->conns[k];
-
-                               if (el1->id == ec->lid)
-                                       break;
-                       }
-
-                       if (k < el0->n_conns)
-                               continue;
-
-                       v1 = ses_vertex_add(graph, el1);
-                       if (!v1)
-                               return -ENOMEM;
-
-                       if (ses_vertex_connect(v0, v1) < 0)
-                               return -ENOMEM;
-               }
-       }
-
-       scf_vector_qsort(graph, ses_vertex_cmp_edges);
-
-#if 0
-       for (i = 0; i < graph->size; i++) {
-               v0        = graph->data[i];
-
-               el0 = v0->data;
-               scf_loge("i: %ld, l%ld\n", i, el0->id);
-
-               for (j = 0; j < v0->edges->size; j++) {
-                       v1        = v0->edges->data[j];
-
-                       el1 = v1->data;
-                       scf_logi("j: %ld, l%ld\n", j, el1->id);
-               }
-               printf("\n");
-       }
-#endif
-       return 0;
-}
-
 int epath_cmp_pins(const void* v0, const void* v1)
 {
        const ses_path_t* p0 = *(const ses_path_t**)v0;
@@ -424,7 +352,7 @@ static int __ses_layout_lines4(ScfEfunction* f)
 
        scf_vector_qsort(paths, epath_cmp_pins);
 
-       ses_paths_print(paths);
+       ses_paths_print(paths, f);
 
        for (i = 0; i < paths->size; i++) {
                base      = paths->data[i];
@@ -1057,8 +985,8 @@ static void __ses_set_xy(ScfEfunction* f, int d)
                                p0    = c->pins[SCF_EDA_NPN_C];
                                p1    = c->pins[SCF_EDA_NPN_E];
 
-                               p0->x = c->x + d / 3;
-                               p1->x = c->x - d / 3;
+                               p0->x = c->x + d / 2;
+                               p1->x = c->x - d / 2;
                                break;
 
                        case SCF_EDA_NAND:
@@ -1255,7 +1183,13 @@ static void __ses_set_cx(ScfEfunction* f, int d)
 
                int tmp = c->x;
 
-               c->x = c2->x + d;
+               if (SCF_EDA_NPN == c->type
+                               || SCF_EDA_PNP == c->type
+                               || SCF_EDA_NPN == c2->type
+                               || SCF_EDA_PNP == c2->type)
+                       c->x = c2->x + d * 2;
+               else
+                       c->x = c2->x + d;
 
                for (k = 0; k < c->n_pins; k++) {
                        p         = c->pins[k];
@@ -1284,6 +1218,7 @@ static void __ses_min_cx(ScfEfunction* f, int d)
 
                int tmp = c->x;
                int max = 0;
+               int mt  = 0;
                int m0  = 0;
 
                if (c->color > 0)
@@ -1347,14 +1282,22 @@ static void __ses_min_cx(ScfEfunction* f, int d)
 _next:
                        continue;
 _max:
-                       if (max < c2->x)
+                       if (max < c2->x) {
                                max = c2->x;
+                               mt  = c2->type;
+                       }
                }
 
                if (0 == max)
                        continue;
 
-               c->x = max + d;
+               if (SCF_EDA_NPN == c->type
+                               || SCF_EDA_PNP == c->type
+                               || SCF_EDA_NPN == mt
+                               || SCF_EDA_PNP == mt)
+                       c->x = max + d * 2;
+               else
+                       c->x = max + d;
 
                for (k = 0; k < c->n_pins; k++) {
                        p         = c->pins[k];
@@ -1377,7 +1320,13 @@ _max:
                                if (c->x > tmp)
                                        break;
 
-                               c->x = c2->x + d;
+                               if (SCF_EDA_NPN == c->type
+                                               || SCF_EDA_PNP == c->type
+                                               || SCF_EDA_NPN == c2->type
+                                               || SCF_EDA_PNP == c2->type)
+                                       c->x = c2->x + d * 2;
+                               else
+                                       c->x = c2->x + d;
 
                                for (k = 0; k < c->n_pins; k++) {
                                        p         = c->pins[k];
@@ -1440,6 +1389,17 @@ static void __ses_xchg_ce(ScfEfunction* f, int d)
                        if ((0 == j && pc->x > pb->x) || (1 == j && pc->x < pb->x))
                                SCF_XCHG(pc->x, pe->x);
                }
+
+               pc = c->pins[SCF_EDA_NPN_C];
+               pe = c->pins[SCF_EDA_NPN_E];
+
+               if (pc->x < c->x) {
+                       pc->x = c->x - d * 7 / 8;
+                       pe->x = c->x + d * 7 / 8;
+               } else {
+                       pc->x = c->x + d * 7 / 8;
+                       pe->x = c->x - d * 7 / 8;
+               }
        }
 }
 
index a3a756c99dfb849cb752b55c1b37f308e2b41a55..928ace514fbc833c89d4903b52e0664ea0d9c7be 100644 (file)
@@ -469,6 +469,46 @@ static void __ses_nodes_set_Ab(ScfEfunction* f, scf_vector_t* nodes, scf_vector_
        }
 }
 
+static void __ses_Vb_by_curve(ScfEcomponent* c, double Ib, double* V)
+{
+       int i;
+       for (i = 0; i < c->n_curves; i++) {
+               if (Ib < c->curves[i]->a)
+                       break;
+       }
+
+       double V0;
+       double V1;
+       double A0;
+       double A1;
+       double R;
+
+       if (0 == i) {
+               V0 = 0.0;
+               A0 = 0.0;
+               V1 = c->curves[i]->v;
+               A1 = c->curves[i]->a;
+
+       } else if (i >= c->n_curves) {
+               assert(2 <= c->n_curves);
+
+               V0 = c->curves[c->n_curves - 2]->v;
+               A0 = c->curves[c->n_curves - 2]->a;
+               V1 = c->curves[c->n_curves - 1]->v;
+               A1 = c->curves[c->n_curves - 1]->a;
+       } else {
+               V0 = c->curves[i - 1]->v;
+               A0 = c->curves[i - 1]->a;
+               V1 = c->curves[i]->v;
+               A1 = c->curves[i]->a;
+       }
+
+       R  = (V1 - V0) / (A1 - A0);
+       *V =  V0 +  R  * (Ib - A0);
+
+       scf_logi("i: %d, n_curves: %ld, Ib: %lg, R: %lg, V: %lg\n", i, c->n_curves, Ib, R, *V);
+}
+
 static int __ses_edges_update_Ab(ScfEfunction* f, scf_vector_t* edges, double* A, double* b, double* X, int N, int* n_offs)
 {
        ses_edge_t*    edge;
@@ -509,19 +549,34 @@ static int __ses_edges_update_Ab(ScfEfunction* f, scf_vector_t* edges, double* A
                        double dV = Vb - Ve;
                        double Ib = X[n + edge->index];
                        double Rb = SCF_EDA_V_NPN_ON / Ib;
-
+                       double V  = SCF_EDA_V_NPN_ON;
+#if 0
+                       if (c->curves && c->n_curves > 0) {
+                               __ses_Vb_by_curve(c, Ib, &V);
+                               __ses_Vb_by_curve(c, V,  &V);
+                               Rb = V / Ib;
+                       }
+#endif
                        if (-1e8 < Rb && Rb < 1e8) {
-                               if (dV < SCF_EDA_V_NPN_ON * 0.99 || dV > SCF_EDA_V_NPN_ON * 1.01) {
+                               if (dV < V * 0.99 || dV > V * 1.01) {
 
                                        if (p0->IC)
-                                               scf_logi("edge: [%d] IC%ld_c%ldp%ld-c%ldp%ld, Vb: %lg, Ve: %lg, dV: %lg, Ib: %lg, Rb: %lg\n",
-                                                               edge->index, p0->IC->id, p0->cid, p0->id, p1->cid, p1->id, Vb, Ve, dV, Ib, Rb);
+                                               scf_logi("edge: [%d] IC%ld_c%ldp%ld-c%ldp%ld, Vb: %lg, Ve: %lg, dV: %lg, V: %lg, Ib: %lg, Rb: %lg\n",
+                                                               edge->index, p0->IC->id, p0->cid, p0->id, p1->cid, p1->id, Vb, Ve, dV, V, Ib, Rb);
                                        else
-                                               scf_logi("edge: [%d] c%ldp%ld-c%ldp%ld, Vb: %lg, Ve: %lg, dV: %lg, Ib: %lg, Rb: %lg\n",
-                                                               edge->index, p0->cid, p0->id, p1->cid, p1->id, Vb, Ve, dV, Ib, Rb);
+                                               scf_logi("edge: [%d] c%ldp%ld-c%ldp%ld, Vb: %lg, Ve: %lg, dV: %lg, V: %lg, Ib: %lg, Rb: %lg\n",
+                                                               edge->index, p0->cid, p0->id, p1->cid, p1->id, Vb, Ve, dV, V, Ib, Rb);
 
                                        A[(n + edge->index) * N + n + edge->index] = -Rb;
+                                       b[ n + edge->index] += 0;
                                        k++;
+                               } else {
+                                       if (p0->IC)
+                                               scf_logw("edge: [%d] IC%ld_c%ldp%ld-c%ldp%ld, Vb: %lg, Ve: %lg, dV: %lg, V: %lg, Ib: %lg, Rb: %lg\n",
+                                                               edge->index, p0->IC->id, p0->cid, p0->id, p1->cid, p1->id, Vb, Ve, dV, V, Ib, Rb);
+                                       else
+                                               scf_logw("edge: [%d] c%ldp%ld-c%ldp%ld, Vb: %lg, Ve: %lg, dV: %lg, V: %lg, Ib: %lg, Rb: %lg\n",
+                                                               edge->index, p0->cid, p0->id, p1->cid, p1->id, Vb, Ve, dV, V, Ib, Rb);
                                }
                        } else {
                                c->status = SCF_EDA_Status_OFF;
@@ -563,10 +618,10 @@ static int __ses_edges_update_Ab(ScfEfunction* f, scf_vector_t* edges, double* A
                                        edge->amplify_flag = 1;
 
                                        if (p0->IC)
-                                               scf_logi("edge: [%d] IC%ld_c%ldp%ld-c%ldp%ld [b%d], Ic: %lg, Ib: %lg, dI: %lg, dVbe: %lg, Rb: %lg\n",
+                                               scf_logd("edge: [%d] IC%ld_c%ldp%ld-c%ldp%ld [b%d], Ic: %lg, Ib: %lg, dI: %lg, dVbe: %lg, Rb: %lg\n",
                                                                edge->index, p0->IC->id, p0->cid, p0->id, p1->cid, p1->id, edge->edge_b->index, Ic, Ib, dI, dV, Rb);
                                        else
-                                               scf_logi("edge: [%d] c%ldp%ld-c%ldp%ld [b%d], Ic: %lg, Ib: %lg, dI: %lg, dVbe: %lg, Rb: %lg\n",
+                                               scf_logd("edge: [%d] c%ldp%ld-c%ldp%ld [b%d], Ic: %lg, Ib: %lg, dI: %lg, dVbe: %lg, Rb: %lg\n",
                                                                edge->index, p0->cid, p0->id, p1->cid, p1->id, edge->edge_b->index, Ic, Ib, dI, dV, Rb);
 
                                        for (i = 0; i < N; i++)
@@ -643,7 +698,7 @@ static int __ses_nodes_path_solve2(ScfEfunction* f, ses_path_t* path, int vip_m,
 
        int n_offs = 0;
 
-#define MAX_TRYS 200
+#define MAX_TRYS 20
        int try = 0;
        do {
                n_offs = 0;
index 957f315d68732cc9fc3fdbe5bee889767ffe8573..30cd17d149bdb8110089d579fb678b9c54976346 100644 (file)
@@ -46,16 +46,16 @@ void ses_path_free(ses_path_t* path)
        }
 }
 
-void ses_path_print(ses_path_t* path)
+void ses_path_print(ses_path_t* path, ScfEfunction* f)
 {
        if (!path)
                return;
 
-       ses_path_t* child;
-       ScfEpin*    p;
+       ses_path_t*    child;
+       ScfEcomponent* c;
+       ScfEpin*       p;
 
        int i;
-       int j;
 
        if (!path->parent)
                printf("\033[31mpath  : %d, n_diodes: %d, n_NPNs: %d, n_PNPs: %d, n_capacitors: %d, n_transistors: %d, \033[0m",
@@ -64,10 +64,43 @@ void ses_path_print(ses_path_t* path)
        for (i = 0; i < path->pins->size; i++) {
                p  =        path->pins->data[i];
 
-               if (p->IC)
-                       printf("IC%ld_", p->IC->id);
+               if (p->IC) {
+                       c = p->IC->f->components[p->cid];
 
-               printf("c%ldp%ld ", p->cid, p->id);
+                       printf("IC%ld_", p->IC->id);
+               } else
+                       c = f->components[p->cid];
+
+               switch (c->type) {
+                       case SCF_EDA_Resistor:
+                               printf("R%ldp%ld ", p->cid, p->id);
+                               break;
+
+                       case SCF_EDA_Capacitor:
+                               printf("C%ldp%ld ", p->cid, p->id);
+                               break;
+
+                       case SCF_EDA_Inductor:
+                               printf("L%ldp%ld ", p->cid, p->id);
+                               break;
+
+                       case SCF_EDA_Diode:
+                               printf("D%ldp%ld ", p->cid, p->id);
+                               break;
+
+                       case SCF_EDA_NPN:
+                       case SCF_EDA_PNP:
+                               if (SCF_EDA_NPN_B == p->id)
+                                       printf("T%ldb  ", p->cid);
+                               else if (SCF_EDA_NPN_C == p->id)
+                                       printf("T%ldc  ", p->cid);
+                               else
+                                       printf("T%lde  ", p->cid);
+                               break;
+                       default:
+                               printf("c%ldp%ld ", p->cid, p->id);
+                               break;
+               };
        }
        printf("\n");
 
@@ -79,7 +112,7 @@ void ses_path_print(ses_path_t* path)
                                printf("\033[34mconnection: %d, n_diodes: %d, n_NPNs: %d, n_PNPs: %d, n_capacitors: %d, n_transistors: %d, parent: %d, \033[0m",
                                                child->index, child->n_diodes, child->n_NPNs, child->n_PNPs, child->n_capacitors, child->n_transistors, path->index);
 
-                               ses_path_print(child);
+                               ses_path_print(child, f);
                        } else
                                printf("\033[34mconnection: %d\033[0m\n", child->index);
                }
@@ -92,7 +125,7 @@ void ses_path_print(ses_path_t* path)
                        printf("\033[32mchild : %d, n_diodes: %d, n_NPNs: %d, n_PNPs: %d, n_capacitors: %d, n_transistors: %d, parent: %d, \033[0m",
                                        child->index, child->n_diodes, child->n_NPNs, child->n_PNPs, child->n_capacitors, child->n_transistors, path->index);
 
-                       ses_path_print(child);
+                       ses_path_print(child, f);
                }
        }
 
@@ -103,12 +136,12 @@ void ses_path_print(ses_path_t* path)
                        printf("\033[33mbridge: %d, n_diodes: %d, n_NPNs: %d, n_PNPs: %d, n_capacitors: %d, n_transistors: %d, parent: %d, \033[0m",
                                        child->index, child->n_diodes, child->n_NPNs, child->n_PNPs, child->n_capacitors, child->n_transistors, path->index);
 
-                       ses_path_print(child);
+                       ses_path_print(child, f);
                }
        }
 }
 
-void ses_paths_print(scf_vector_t* paths)
+void ses_paths_print(scf_vector_t* paths, ScfEfunction* f)
 {
        ses_path_t* path;
 
@@ -116,7 +149,7 @@ void ses_paths_print(scf_vector_t* paths)
        for (i = 0; i < paths->size; i++) {
                path      = paths->data[i];
 
-               ses_path_print(path);
+               ses_path_print(path, f);
                printf("\n");
        }
 }
index 830c957bc0348df5a19702d72be3b9ab59794007..93be2aeab71dc1e3c189eaa85572b870257b2caf 100644 (file)
@@ -33,9 +33,9 @@ static int __dc_npn_status(ScfEfunction* root, ScfEfunction* f, ScfEpin* Bp, Scf
 
                if (lb == LP && le == LN) {
                        if (pb->IC)
-                               scf_loge("NPN IC%ld_c%ld, short connected\n", pb->IC->id, c->id);
+                               scf_loge("NPN IC%ld_T%ld, short connected\n", pb->IC->id, c->id);
                        else
-                               scf_loge("NPN c%ld, short connected\n", c->id);
+                               scf_loge("NPN T%ld, short connected\n", c->id);
                        return -EINVAL;
                }
 
@@ -43,18 +43,18 @@ static int __dc_npn_status(ScfEfunction* root, ScfEfunction* f, ScfEpin* Bp, Scf
                        c->status = SCF_EDA_Status_OFF;
 
                        if (pb->IC)
-                               scf_loge("NPN IC%ld_c%ld, status: %d\n", pb->IC->id, c->id, c->status);
+                               scf_loge("NPN IC%ld_T%ld, status: %d\n", pb->IC->id, c->id, c->status);
                        else
-                               scf_loge("NPN c%ld, status: %d\n", c->id, c->status);
+                               scf_loge("NPN T%ld, status: %d\n", c->id, c->status);
                        continue;
                }
 
                if (c->lock) {
                        if (pb->IC)
-                               scf_loge("\033[34mIC%ld_c%ld, status: %d, lock: %d, pb->v: %lg, pe->v: %lg, diff: %lg, off: %lg\033[0m\n",
+                               scf_loge("\033[34mIC%ld_T%ld, status: %d, lock: %d, pb->v: %lg, pe->v: %lg, diff: %lg, off: %lg\033[0m\n",
                                                pb->IC->id, c->id, c->status, c->lock, pb->v, pe->v, pb->v - pe->v, SCF_EDA_V_NPN_OFF);
                        else
-                               scf_loge("\033[34mc%ld, status: %d, lock: %d, pb->v: %lg, pe->v: %lg, diff: %lg, off: %lg\033[0m\n",
+                               scf_loge("\033[34mT%ld, status: %d, lock: %d, pb->v: %lg, pe->v: %lg, diff: %lg, off: %lg\033[0m\n",
                                                c->id, c->status, c->lock, pb->v, pe->v, pb->v - pe->v, SCF_EDA_V_NPN_OFF);
                        continue;
                }
@@ -112,10 +112,10 @@ static int __dc_npn_status(ScfEfunction* root, ScfEfunction* f, ScfEpin* Bp, Scf
                }
 
                if (pb->IC)
-                       scf_loge("\033[34mIC%ld_c%ld, status: %d, lock: %d, pb->v: %lg, pe->v: %lg, diff: %lg, off: %lg\033[0m\n",
+                       scf_loge("\033[34mIC%ld_T%ld, status: %d, lock: %d, pb->v: %lg, pe->v: %lg, diff: %lg, off: %lg\033[0m\n",
                                        pb->IC->id, c->id, c->status, c->lock, pb->v, pe->v, pb->v - pe->v, SCF_EDA_V_NPN_OFF);
                else
-                       scf_loge("\033[34mc%ld, status: %d, lock: %d, pb->v: %lg, pe->v: %lg, diff: %lg, off: %lg\033[0m\n",
+                       scf_loge("\033[34mT%ld, status: %d, lock: %d, pb->v: %lg, pe->v: %lg, diff: %lg, off: %lg\033[0m\n",
                                        c->id, c->status, c->lock, pb->v, pe->v, pb->v - pe->v, SCF_EDA_V_NPN_OFF);
        }
 
index b26587922752140b3390a91923cb3463730b8bc6..58f513a380d2353b8aa74074bfcfe53d173e6b51 100644 (file)
@@ -1,7 +1,7 @@
 #include<cairo/cairo.h>
 #include"ses_core.h"
 
-#define SHOW_BITS 10000.0
+#define SHOW_BITS 1000.0
 
 static void ses_text_a(cairo_t* cr, int x, int y, double a)
 {
@@ -42,7 +42,7 @@ static void ses_text_v(cairo_t* cr, int x, int y, double v)
                cairo_set_source_rgb(cr, 0.0, 0.0, 0.7);
 
        if (v > 1e-1 || v < -1e-1) {
-               snprintf(text, sizeof(text) - 1, "%lgv", (int64_t)(v * SHOW_BITS) / SHOW_BITS);
+               snprintf(text, sizeof(text) - 1, "%lgV", (int64_t)(v * SHOW_BITS) / SHOW_BITS);
 
                cairo_move_to  (cr, x, y);
                cairo_show_text(cr, text);
@@ -79,14 +79,54 @@ void __ses_function_draw(ScfEfunction* f, cairo_t* cr)
 
                cairo_set_line_width(cr, 2.5);
 
-               uint8_t text[64];
-               int n = snprintf(text, sizeof(text) - 1, "%ld", c->id);
-
                cairo_set_source_rgb  (cr, 0, 0, 0);
                cairo_select_font_face(cr, "Calibri", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
                cairo_set_font_size   (cr, 20);
-               cairo_move_to         (cr, c->x - 10 - n * 10, c->y - 12);
-               cairo_show_text       (cr, text);
+
+               uint8_t text[64];
+               int n = 0;
+
+               switch (c->type) {
+                       case SCF_EDA_Resistor:
+                               n = snprintf(text, sizeof(text) - 1, "R%ld", c->id);
+
+                               cairo_move_to(cr, c->x + 10, c->y + 8);
+                               break;
+
+                       case SCF_EDA_Capacitor:
+                               n = snprintf(text, sizeof(text) - 1, "C%ld", c->id);
+
+                               cairo_move_to(cr, c->x - 8 - n * 10, c->y - 12);
+                               break;
+
+                       case SCF_EDA_Inductor:
+                               n = snprintf(text, sizeof(text) - 1, "L%ld", c->id);
+
+                               cairo_move_to(cr, c->x - 12 - n * 10, c->y - 12);
+                               break;
+
+                       case SCF_EDA_Diode:
+                               n = snprintf(text, sizeof(text) - 1, "D%ld", c->id);
+
+                               cairo_move_to(cr, c->x + 15, c->y + 10);
+                               break;
+
+                       case SCF_EDA_NPN:
+                       case SCF_EDA_PNP:
+                               n = snprintf(text, sizeof(text) - 1, "T%ld", c->id);
+
+                               if (c->pins[SCF_EDA_NPN_B]->y < c->y)
+                                       cairo_move_to(cr, c->x - 20 - n * 10, c->y - 12);
+                               else
+                                       cairo_move_to(cr, c->x - 20 - n * 10, c->y + 12);
+                               break;
+                       default:
+                               n = snprintf(text, sizeof(text) - 1, "%ld", c->id);
+                               cairo_move_to(cr, c->x - 10 - n * 10, c->y - 12);
+                               break;
+               };
+
+               cairo_show_text(cr, text);
                cairo_stroke(cr);
 
                if ((SCF_EDA_Diode == c->type || SCF_EDA_NPN == c->type) && SCF_EDA_Status_OFF == c->status)
@@ -208,7 +248,7 @@ void __ses_function_draw(ScfEfunction* f, cairo_t* cr)
                                else
                                        snprintf(text, sizeof(text) - 1, "%lguF", c->uf);
 
-                               cairo_move_to  (cr, c->x + 4, c->y - 5);
+                               cairo_move_to  (cr, c->x + 2, c->y - 8);
                                cairo_show_text(cr, text);
                                cairo_stroke(cr);
                                break;
@@ -295,17 +335,17 @@ void __ses_function_draw(ScfEfunction* f, cairo_t* cr)
 
                                cairo_select_font_face(cr, "Georgia", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
 
-                               ses_text_a(cr, c->x + 10, c->y + 25, c->a);
+                               ses_text_a(cr, c->x + 10, c->y + 27, c->a);
 
                                cairo_set_source_rgb(cr, 0.0, 0.0, 0.0);
                                if (c->r + c->dr > 1e6)
-                                       snprintf(text, sizeof(text) - 1, "%lgM", (int64_t)(c->r + c->dr) / 1000.0);
+                                       snprintf(text, sizeof(text) - 1, "%lgMΩ", (int64_t)(c->r + c->dr) / 1000.0);
                                else if (c->r + c->dr > 999)
-                                       snprintf(text, sizeof(text) - 1, "%lgk", (int64_t)((c->r + c->dr) * 1000.0) / 1000000.0);
+                                       snprintf(text, sizeof(text) - 1, "%lgkΩ", (int64_t)((c->r + c->dr) * 1000.0) / 1000000.0);
                                else
                                        snprintf(text, sizeof(text) - 1, "%lgΩ", (int64_t)((c->r + c->dr) * 1000.0) / 1000.0);
 
-                               cairo_move_to  (cr, c->x + 4, c->y - 5);
+                               cairo_move_to  (cr, c->x + 10, c->y - 9);
                                cairo_show_text(cr, text);
                                cairo_stroke(cr);
                                break;
@@ -351,56 +391,73 @@ void __ses_function_draw(ScfEfunction* f, cairo_t* cr)
                                cairo_rel_line_to(cr, -dx0 * 2,    -dy0 * 2);
                                cairo_stroke(cr);
 
+                               cairo_select_font_face(cr, "Georgia", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
+
                                if ((c->x + dx3 + dx0 > c->x + dx3 - dx0 && pe->x > pc->x)
                                                || (c->x + dx3 + dx0 < c->x + dx3 - dx0 && pe->x < pc->x)) {
 
                                        cairo_move_to(cr, c->x - dx3,       c->y - dy3);
                                        cairo_line_to(cr, c->x + dx3 + dx0, c->y + dy3 + dy0);
-                                       cairo_line_to(cr, pe->x, pe->y);
+                                       cairo_line_to(cr, pe->x,            c->y + dy3 + dy0);
+                                       cairo_line_to(cr, pe->x,            pe->y);
 
                                        vertical(&dx1, &dy1, dx3 * 2 + dx0, dy3 * 2 + dy0, 3);
                                        forward (&dx4, &dy4, dx3 * 2 + dx0, dy3 * 2 + dy0, 8);
 
-                                       cairo_move_to(cr, c->x - dx3 + dx4 + dx1,  c->y - dy3 + dy4 + dy1);
-                                       cairo_line_to(cr, c->x + dx3 + dx0,        c->y + dy3 + dy0);
+                                       cairo_move_to(cr, c->x + dx3 + dx0,        c->y + dy3 + dy0);
+                                       cairo_line_to(cr, c->x - dx3 + dx4 + dx1,  c->y - dy3 + dy4 + dy1);
+                                       cairo_move_to(cr, c->x + dx3 + dx0,        c->y + dy3 + dy0);
                                        cairo_line_to(cr, c->x - dx3 + dx4 - dx1,  c->y - dy3 + dy4 - dy1);
                                        cairo_stroke(cr);
 
                                        cairo_move_to(cr, c->x - dx3,        c->y - dy3);
                                        cairo_line_to(cr, c->x + dx3 - dx0,  c->y + dy3 - dy0);
-                                       cairo_line_to(cr, pc->x, pc->y);
+                                       cairo_line_to(cr, pc->x,             c->y + dy3 - dy0);
+                                       cairo_line_to(cr, pc->x,             pc->y);
                                        cairo_stroke(cr);
                                } else {
                                        cairo_move_to(cr, c->x - dx3,       c->y - dy3);
                                        cairo_line_to(cr, c->x + dx3 + dx0, c->y + dy3 + dy0);
-                                       cairo_line_to(cr, pc->x, pc->y);
+                                       cairo_line_to(cr, pc->x,            c->y + dy3 + dy0);
+                                       cairo_line_to(cr, pc->x,            pc->y);
                                        cairo_stroke(cr);
 
                                        cairo_move_to(cr, c->x - dx3,        c->y - dy3);
                                        cairo_line_to(cr, c->x + dx3 - dx0,  c->y + dy3 - dy0);
-                                       cairo_line_to(cr, pe->x, pe->y);
+                                       cairo_line_to(cr, pe->x,             c->y + dy3 - dy0);
+                                       cairo_line_to(cr, pe->x,             pe->y);
 
                                        vertical(&dx1, &dy1, dx3 * 2 - dx0, dy3 * 2 - dy0, 3);
                                        forward (&dx4, &dy4, dx3 * 2 - dx0, dy3 * 2 - dy0, 8);
 
-                                       cairo_move_to(cr, c->x - dx3 + dx4 + dx1,  c->y - dy3 + dy4 + dy1);
-                                       cairo_line_to(cr, c->x + dx3 - dx0,        c->y + dy3 - dy0);
+                                       cairo_move_to(cr, c->x + dx3 - dx0,        c->y + dy3 - dy0);
+                                       cairo_line_to(cr, c->x - dx3 + dx4 + dx1,  c->y - dy3 + dy4 + dy1);
+                                       cairo_move_to(cr, c->x + dx3 - dx0,        c->y + dy3 - dy0);
                                        cairo_line_to(cr, c->x - dx3 + dx4 - dx1,  c->y - dy3 + dy4 - dy1);
                                        cairo_stroke(cr);
                                }
 
-                               cairo_select_font_face(cr, "Georgia", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
-                               if (pb->y > c->y)
-                                       ses_text_a(cr, c->x, c->y + 20, pb->a);
-                               else
-                                       ses_text_a(cr, c->x, c->y - 20, pb->a);
+                               if (pb->y > c->y) {
+                                       ses_text_a(cr, c->x + 2, c->y + 32, pb->a);
 
-                               ses_text_a(cr, c->x,  c->y, pc->a);
+                                       if (pc->x < c->x) {
+                                               ses_text_a(cr, pc->x + 2, c->y - 10, pc->a);
+                                               ses_text_a(cr, c ->x + 2, c->y - 10, pe->a);
+                                       } else {
+                                               ses_text_a(cr, pe->x + 2, c->y - 10, pe->a);
+                                               ses_text_a(cr, c ->x + 2, c->y - 10, pc->a);
+                                       }
+                               } else {
+                                       ses_text_a(cr, c->x + 2, c->y - 28, pb->a);
 
-                               if (pe->y > c->y)
-                                       ses_text_a(cr, c->x, c->y + 20, pe->a);
-                               else
-                                       ses_text_a(cr, c->x, c->y - 20, pe->a);
+                                       if (pc->x < c->x) {
+                                               ses_text_a(cr, pc->x + 2, c->y + 28, pc->a);
+                                               ses_text_a(cr, c ->x + 2, c->y + 28, pe->a);
+                                       } else {
+                                               ses_text_a(cr, pe->x + 2, c->y + 28, pe->a);
+                                               ses_text_a(cr, c ->x + 2, c->y + 28, pc->a);
+                                       }
+                               }
                                cairo_stroke(cr);
                                break;
 
@@ -425,7 +482,8 @@ void __ses_function_draw(ScfEfunction* f, cairo_t* cr)
 
                                        cairo_move_to(cr, c->x - dx3,       c->y - dy3);
                                        cairo_line_to(cr, c->x + dx3 + dx0, c->y + dy3 + dy0);
-                                       cairo_line_to(cr, pe->x, pe->y);
+                                       cairo_line_to(cr, pe->x,            c->y + dy3 + dy0);
+                                       cairo_line_to(cr, pe->x,            pe->y);
 
                                        vertical(&dx1, &dy1, dx3 * 2 + dx0, dy3 * 2 + dy0, 4);
                                        forward (&dx4, &dy4, dx3 * 2 + dx0, dy3 * 2 + dy0, 12);
@@ -437,17 +495,20 @@ void __ses_function_draw(ScfEfunction* f, cairo_t* cr)
 
                                        cairo_move_to(cr, c->x - dx3,        c->y - dy3);
                                        cairo_line_to(cr, c->x + dx3 - dx0,  c->y + dy3 - dy0);
-                                       cairo_line_to(cr, pc->x, pc->y);
+                                       cairo_line_to(cr, pc->x,             c->y + dy3 - dy0);
+                                       cairo_line_to(cr, pc->x,             pc->y);
                                        cairo_stroke(cr);
                                } else {
                                        cairo_move_to(cr, c->x - dx3,       c->y - dy3);
                                        cairo_line_to(cr, c->x + dx3 + dx0, c->y + dy3 + dy0);
-                                       cairo_line_to(cr, pc->x, pc->y);
+                                       cairo_line_to(cr, pc->x,            c->y + dy3 + dy0);
+                                       cairo_line_to(cr, pc->x,            pc->y);
                                        cairo_stroke(cr);
 
                                        cairo_move_to(cr, c->x - dx3,        c->y - dy3);
                                        cairo_line_to(cr, c->x + dx3 - dx0,  c->y + dy3 - dy0);
-                                       cairo_line_to(cr, pe->x, pe->y);
+                                       cairo_line_to(cr, pe->x,             c->y + dy3 - dy0);
+                                       cairo_line_to(cr, pe->x,             pe->y);
 
                                        vertical(&dx1, &dy1, dx3 * 2 - dx0, dy3 * 2 - dy0, 4);
                                        forward (&dx4, &dy4, dx3 * 2 - dx0, dy3 * 2 - dy0, 12);
@@ -460,17 +521,28 @@ void __ses_function_draw(ScfEfunction* f, cairo_t* cr)
 
                                cairo_select_font_face(cr, "Georgia", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
 
-                               if (pb->y > c->y)
-                                       ses_text_a(cr, c->x, c->y + 20, pb->a);
-                               else
-                                       ses_text_a(cr, c->x, c->y - 20, pb->a);
+                               if (pb->y > c->y) {
+                                       ses_text_a(cr, c->x + 2, c->y + 32, pb->a);
 
-                               ses_text_a(cr, c->x,  c->y, pc->a);
+                                       if (pc->x < c->x) {
+                                               ses_text_a(cr, pc->x + 2, c->y - 10, pc->a);
+                                               ses_text_a(cr, c ->x + 2, c->y - 10, pe->a);
+                                       } else {
+                                               ses_text_a(cr, pe->x + 2, c->y - 10, pe->a);
+                                               ses_text_a(cr, c ->x + 2, c->y - 10, pc->a);
+                                       }
+                               } else {
+                                       ses_text_a(cr, c->x + 2, c->y - 28, pb->a);
+
+                                       if (pc->x < c->x) {
+                                               ses_text_a(cr, pc->x + 2, c->y + 28, pc->a);
+                                               ses_text_a(cr, c ->x + 2, c->y + 28, pe->a);
+                                       } else {
+                                               ses_text_a(cr, pe->x + 2, c->y + 28, pe->a);
+                                               ses_text_a(cr, c ->x + 2, c->y + 28, pc->a);
+                                       }
+                               }
 
-                               if (pe->y > c->y)
-                                       ses_text_a(cr, c->x, c->y + 20, pe->a);
-                               else
-                                       ses_text_a(cr, c->x, c->y - 20, pe->a);
                                cairo_stroke(cr);
                                break;
 
@@ -839,7 +911,6 @@ int ses_draw(ScfEfunction* f, const char* file, uint32_t bx, uint32_t by, uint32
 
                        if (!prev) {
                                cairo_select_font_face(cr, "Calibri", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
-
                                cairo_set_font_size(cr, 28);
 
                                int n = snprintf(text, sizeof(text) - 1, "%ld", el->id);
@@ -847,32 +918,6 @@ int ses_draw(ScfEfunction* f, const char* file, uint32_t bx, uint32_t by, uint32
                                cairo_move_to  (cr, l->x0 - 10 - n * 12, l->y0 + 10);
                                cairo_show_text(cr, text);
                                cairo_stroke(cr);
-
-                               // V of line
-                               if (el->v < SCF_EDA_V_MIN)
-                                       n = snprintf(text, sizeof(text) - 1, "0v");
-                               else if (el->v > SCF_EDA_V_MAX)
-                                       n = snprintf(text, sizeof(text) - 1, "%lgv", B->pins[SCF_EDA_Battery_POS]->v);
-
-                               else if (el->v > 1e-2 || el->v < -1e-2)
-                                       n = snprintf(text, sizeof(text) - 1, "%lgv", (int64_t)(el->v * SHOW_BITS) / SHOW_BITS);
-
-                               else if (el->v > 1e-5 || el->v < -1e-5)
-                                       n = snprintf(text, sizeof(text) - 1, "%lgmV", (int64_t)(el->v * 1000.0 * SHOW_BITS) / SHOW_BITS);
-                               else
-                                       n = snprintf(text, sizeof(text) - 1, "%lguV", (int64_t)(el->v * 1000000.0 * SHOW_BITS) / SHOW_BITS);
-
-                               cairo_set_font_size(cr, 20);
-
-                               if (el->v == B->pins[SCF_EDA_Battery_POS]->v)
-                                       cairo_set_source_rgb(cr, 1, 0, 0);
-
-                               else if (el->v == B->pins[SCF_EDA_Battery_NEG]->v)
-                                       cairo_set_source_rgb(cr, 0, 0, 1);
-
-                               cairo_move_to  (cr, l->x0 + 10, l->y0 - 8);
-                               cairo_show_text(cr, text);
-                               cairo_stroke(cr);
                        }
 
                        cairo_set_line_width(cr, 4);
@@ -891,6 +936,38 @@ int ses_draw(ScfEfunction* f, const char* file, uint32_t bx, uint32_t by, uint32
 
                        prev = l;
                }
+
+               if (prev) {
+                       int n;
+
+                       if (el->v < SCF_EDA_V_MIN)
+                               n = snprintf(text, sizeof(text) - 1, "0V");
+                       else if (el->v > SCF_EDA_V_MAX)
+                               n = snprintf(text, sizeof(text) - 1, "%lgV", B->pins[SCF_EDA_Battery_POS]->v);
+
+                       else if (el->v > 1e-2 || el->v < -1e-2)
+                               n = snprintf(text, sizeof(text) - 1, "%lgV", (int64_t)(el->v * SHOW_BITS) / SHOW_BITS);
+
+                       else if (el->v > 1e-5 || el->v < -1e-5)
+                               n = snprintf(text, sizeof(text) - 1, "%lgmV", (int64_t)(el->v * 1000.0 * SHOW_BITS) / SHOW_BITS);
+                       else
+                               n = snprintf(text, sizeof(text) - 1, "%lguV", (int64_t)(el->v * 1000000.0 * SHOW_BITS) / SHOW_BITS);
+
+                       if (el->v == B->pins[SCF_EDA_Battery_POS]->v)
+                               cairo_set_source_rgb(cr, 1, 0, 0);
+                       else if (el->v == B->pins[SCF_EDA_Battery_NEG]->v)
+                               cairo_set_source_rgb(cr, 0, 0, 1);
+
+                       cairo_set_font_size(cr, 20);
+
+                       if (prev->x1 - prev->x0 >= 12 + n * 12)
+                               cairo_move_to(cr, prev->x1 - 12 - n * 12, prev->y0 - 5);
+                       else
+                               cairo_move_to(cr, prev->x1 + 4, prev->y0 - 5);
+
+                       cairo_show_text(cr, text);
+                       cairo_stroke(cr);
+               }
        }
 
        __ses_function_draw(f, cr);
index f9865179ffbeb491474d5d334ad3bbaa57df4883..fee43cdbab483220a168c10e493d0d9e326f7f91 100644 (file)
@@ -1209,12 +1209,11 @@ static int _topo_paths(ScfEfunction* f, ScfEline* el, scf_vector_t* paths, int f
        return 0;
 }
 
-static int __topo_bridge_connection(ScfEfunction* f, scf_vector_t* paths, ses_path_t* bridge, ScfEpin* vip, ses_path_t** ppath)
+static int __topo_connect(ScfEfunction* f, scf_vector_t* paths, ses_path_t* conn, ScfEpin* vip, ses_path_t** ppath)
 {
        ses_path_t* path;
-       ses_path_t* conn;
-       ScfEpin*    p0 = bridge->pins->data[0];
-       ScfEpin*    p1 = bridge->pins->data[bridge->pins->size - 1];
+       ScfEpin*    p0 = conn->pins->data[0];
+       ScfEpin*    p1 = conn->pins->data[conn->pins->size - 1];
        ScfEpin*    p2;
        ScfEpin*    p3;
 
@@ -1224,7 +1223,7 @@ static int __topo_bridge_connection(ScfEfunction* f, scf_vector_t* paths, ses_pa
        for (j = 0; j < paths->size; j++) {
                path      = paths->data[j];
 
-               if (path == bridge)
+               if (path == conn)
                        continue;
 
                p2 = path->pins->data[0];
@@ -1245,13 +1244,13 @@ static int __topo_bridge_connection(ScfEfunction* f, scf_vector_t* paths, ses_pa
                }
 
                if (path->childs) {
-                       k = __topo_bridge_connection(f, path->childs, bridge, vip, ppath);
+                       k = __topo_connect(f, path->childs, conn, vip, ppath);
                        if (k >= 0)
                                return k;
                }
 
                if (path->bridges) {
-                       k = __topo_bridge_connection(f, path->bridges, bridge, vip, ppath);
+                       k = __topo_connect(f, path->bridges, conn, vip, ppath);
                        if (k >= 0)
                                return k;
                }
@@ -1287,7 +1286,7 @@ static int _topo_bridge_piers(ScfEfunction* f, scf_vector_t* paths)
                        if (ses_same_line(f, p1, Bn))
                                continue;
 
-                       k = __topo_bridge_connection(f, paths, pier, p1, &bridge);
+                       k = __topo_connect(f, paths, pier, p1, &bridge);
                        if (k < 0)
                                continue;
 
@@ -1296,7 +1295,7 @@ static int _topo_bridge_piers(ScfEfunction* f, scf_vector_t* paths)
 
                } else if (ses_same_line(f, p1, Bn)) {
 
-                       k = __topo_bridge_connection(f, paths, pier, p0, &bridge);
+                       k = __topo_connect(f, paths, pier, p0, &bridge);
                        if (k < 0)
                                continue;
 
@@ -1358,11 +1357,11 @@ static int _topo_bridge_connections(ScfEfunction* f, scf_vector_t* paths)
                if (ses_same_line(f, p0, Bp) && ses_same_line(f, p1, Bn))
                        continue;
 
-               int k0 = __topo_bridge_connection(f, paths, path, p0, &path->conn0);
+               int k0 = __topo_connect(f, paths, path, p0, &path->conn0);
                if (k0 < 0)
                        continue;
 
-               int k1 = __topo_bridge_connection(f, paths, path, p1, &path->conn1);
+               int k1 = __topo_connect(f, paths, path, p1, &path->conn1);
                if (k1 < 0)
                        continue;
 
@@ -1565,7 +1564,7 @@ static int _topo_handler(ScfEfunction* f, int64_t ns, int64_t count, ses_ctx_t*
                return ret;
 
        scf_logi("\n");
-       ses_paths_print(ctx->paths);
+       ses_paths_print(ctx->paths, f);
        scf_logi("\n\n");
 
        ret = __ses_topo_layers(f, ctx->paths);
@@ -1587,7 +1586,7 @@ static int _topo_handler(ScfEfunction* f, int64_t ns, int64_t count, ses_ctx_t*
                _topo_key_components(f, path);
        }
 
-       ses_paths_print(ctx->paths);
+       ses_paths_print(ctx->paths, f);
        return 0;
 }
 
index 11fa9a068b13d42af71ce3f0700d4e27a4aaf627..f15146464afff0cbe097486de64633988848d625 100644 (file)
@@ -182,13 +182,13 @@ int __ses_path_va_branch(ScfEfunction* f, ses_path_t* path, int m, int n, double
 
                        c->count = count;
 
-                       scf_loge("path: %d, i: %d, c%ldp%ld, p->v: %lg, dv: %lg, r: %lg, p->a: %lg, a: %lg, p->pr: %lg, e%ld->v: %lg\n\n",
+                       scf_logi("path: %d, i: %d, c%ldp%ld, p->v: %lg, dv: %lg, r: %lg, p->a: %lg, a: %lg, p->pr: %lg, e%ld->v: %lg\n\n",
                                        path->index, i, p->cid, p->id, p->v, dv, r, p->a, a, p->pr, el->id, el->v);
 
                        r = 0;
                } else {
                        dv = p->v;
-                       scf_loge("path: %d, i: %d, c%ldp%ld, p->v: %lg, dv: %lg, a: %lg, p->pr: %lg, e%ld->v: %lg\n",
+                       scf_logi("path: %d, i: %d, c%ldp%ld, p->v: %lg, dv: %lg, a: %lg, p->pr: %lg, e%ld->v: %lg\n",
                                        path->index, i, p->cid, p->id, p->v, dv, a, p->pr, el->id, el->v);
                }
        }
index dc1fe972368aa362456e220692a7806f30fd3eb5..576f8d6a8e204d6e270f5d4a7e1c70b022febd23 100644 (file)
@@ -83,7 +83,7 @@ int main(int argc, char* argv[])
 
        scf_eboard__add_function(b, f);
 
-       int      len = 0;
+       long     len = 0;
        uint8_t* buf = NULL;
 
        ScfEboard_pack(b, &buf, &len);
index b7812eef2deb4447a9071f67602c16243e47b896..e969a293995373b5c7a75db6672db6450aae336f 100644 (file)
@@ -4,11 +4,12 @@
 #include <gsl/gsl_fft_complex.h>
 #include <gsl/gsl_fft_real.h>
 #include <gsl/gsl_fft_halfcomplex.h>
+#include <cairo/cairo.h>
 
 #define REAL(z,i) ((z)[2*(i)])
 #define IMAG(z,i) ((z)[2*(i)+1])
 
-#define N 256
+#define N 512
 
 int main()
 {
@@ -21,11 +22,66 @@ int main()
 
        double data[2 * N];
 
+       cairo_surface_t* surface;
+       cairo_t*         cr;
+
+       surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 600, 400);
+       cr      = cairo_create (surface);
+
+       cairo_set_line_width(cr, 2);
+       cairo_set_source_rgb(cr, 1, 1, 1);
+       cairo_rectangle     (cr, 0, 0, 600, 600);
+       cairo_fill(cr);
+       cairo_stroke(cr);
+
+       cairo_select_font_face(cr, "Calibri", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
+       cairo_set_font_size(cr, 20);
+       cairo_set_source_rgb(cr, 0, 0, 0);
+
+       cairo_move_to(cr, 20,  234.5);
+       cairo_line_to(cr, 580, 234.5);
+       cairo_stroke(cr);
+
+       double v0 = 0.0;
+       double s  = 0.0;
+       double min = 10.0;
+       double max = 0.0;
+       int    n  = 0;
+
        for (i = 0; i < N; i++) {
                fscanf(fp, "%d, %lg", &j, &v);
+
                REAL(data, i) = v;
                IMAG(data, i) = 0.0;
+#if 1
+               if (i > 11 && i < 550) {
+                       printf("i: %d, v0: %lg, v: %lg\n", i, v0, v);
+
+                       if (max < v)
+                               max = v;
+                       if (min > v)
+                               min = v;
+
+                       cairo_move_to(cr, 40 + (i - 1), 300 - 20 * v0);
+                       cairo_line_to(cr, 40 + i,       300 - 20 * v);
+                       cairo_stroke(cr);
+
+                       s += v;
+                       n++;
+               }
+               v0 = v;
+#endif
        }
+
+       printf("s/n: %lg, max: %lg, min: %lg, 300 - 10 * (max + min): %lg\n", s/n, max, min, 300 - 10 * (max + min));
+
+       cairo_surface_write_to_png(surface, "sin.png");
+
+       cairo_destroy(cr);
+       cairo_surface_destroy(surface);
+       surface = NULL;
+       cr = NULL;
+
        gsl_fft_complex_radix2_forward(data, 1, N);
 
        double Zmax = 0;
index 89544804915f61e235769b971205b3783ab87afb..b42576f68cf4f733495927483368498df1695db6 100644 (file)
@@ -87,7 +87,7 @@ int main(int argc, char* argv[])
 
        scf_eboard__add_function(b, f);
 
-       int      len = 0;
+       long     len = 0;
        uint8_t* buf = NULL;
 
        ScfEboard_pack(b, &buf, &len);